comparison h2_proxy_request_buffering_ssl.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 ea593a9bab09
children dbce8fb5f5f8
comparison
equal deleted inserted replaced
1420:ea593a9bab09 1421:4e48bf51714f
268 268
269 sub backend_read { 269 sub backend_read {
270 my ($s, $timo) = @_; 270 my ($s, $timo) = @_;
271 my $buf = ''; 271 my $buf = '';
272 272
273 if (IO::Select->new($s)->can_read($timo || 5)) { 273 if (IO::Select->new($s)->can_read($timo || 8)) {
274 $s->sysread($buf, 16384) or return; 274 $s->sysread($buf, 16384) or return;
275 log2i($buf); 275 log2i($buf);
276 } 276 }
277 return $buf; 277 return $buf;
278 } 278 }