comparison http_keepalive.t @ 1361:6c4f9941ae9f

Tests: fixed http_keepalive.t response logging.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 06 Aug 2018 14:52:00 +0300
parents 2b8523bd4988
children 1a409a166420
comparison
equal deleted inserted replaced
1360:6efe4dbf713b 1361:6c4f9941ae9f
134 sysread($s, my $buffer, 4096) or last; 134 sysread($s, my $buffer, 4096) or last;
135 $data .= $buffer; 135 $data .= $buffer;
136 last if $data =~ /^\x0d\x0a/ms; 136 last if $data =~ /^\x0d\x0a/ms;
137 } 137 }
138 138
139 log_in($data);
139 } 140 }
140 141
141 return $data; 142 return $data;
142 } 143 }
143 144