comparison ssl_proxy_protocol.t @ 1421:4e48bf51714f

Tests: aligned various generic read timeouts to http_end(). It was observed that previous timeout values could not be enough when making mass-building, in particular, when running with modsecurity.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 24 Dec 2018 14:24:51 +0300
parents 8c764fd93b5e
children dbce8fb5f5f8
comparison
equal deleted inserted replaced
1420:ea593a9bab09 1421:4e48bf51714f
154 my $s = http($proxy, start => 1); 154 my $s = http($proxy, start => 1);
155 155
156 eval { 156 eval {
157 local $SIG{ALRM} = sub { die "timeout\n" }; 157 local $SIG{ALRM} = sub { die "timeout\n" };
158 local $SIG{PIPE} = sub { die "sigpipe\n" }; 158 local $SIG{PIPE} = sub { die "sigpipe\n" };
159 alarm(5); 159 alarm(8);
160 IO::Socket::SSL->start_SSL($s, 160 IO::Socket::SSL->start_SSL($s,
161 SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE(), 161 SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE(),
162 SSL_error_trap => sub { die $_[1] } 162 SSL_error_trap => sub { die $_[1] }
163 ); 163 );
164 alarm(0); 164 alarm(0);