comparison h2_ssl.t @ 1654:341506267e16

Tests: HTTP/2 tests speedup. Similar to a78eedc39484, this change disables lingering_close in those tests that depend on open connections during graceful shutdown for testing alerts. It was ensured that disabling lingering_close does not cover alerts on older versions.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 15 Feb 2021 15:55:54 +0300
parents dbce8fb5f5f8
children f7e667a4898d
comparison
equal deleted inserted replaced
1653:259dfb223f9a 1654:341506267e16
45 listen 127.0.0.1:8080 http2 ssl; 45 listen 127.0.0.1:8080 http2 ssl;
46 server_name localhost; 46 server_name localhost;
47 47
48 ssl_certificate_key localhost.key; 48 ssl_certificate_key localhost.key;
49 ssl_certificate localhost.crt; 49 ssl_certificate localhost.crt;
50
51 lingering_close off;
50 52
51 location / { } 53 location / { }
52 } 54 }
53 } 55 }
54 56