| commit | 3dea919675f032b04360c934266585d53e3ba114 | [log] [tgz] |
|---|---|---|
| author | Igor Sysoev <igor@sysoev.ru> | Sun Sep 09 18:32:53 2007 +0000 |
| committer | Igor Sysoev <igor@sysoev.ru> | Sun Sep 09 18:32:53 2007 +0000 |
| tree | c9f617969049d298603d38f180695ad38920cc92 | |
| parent | ec67b19ea01d8a71c64a64a183669549e091f7a8 [diff] [blame] |
read EOF of header only responses in non-buffered proxying
diff --git a/src/http/ngx_http_upstream.c b/src/http/ngx_http_upstream.c index fa84772..650c84c 100644 --- a/src/http/ngx_http_upstream.c +++ b/src/http/ngx_http_upstream.c
@@ -1490,6 +1490,11 @@ ngx_http_upstream_finalize_request(r, u, 0); return; } + + if (u->peer.connection->read->ready) { + ngx_http_upstream_process_non_buffered_body( + u->peer.connection->read); + } } return;