diff src/http/ngx_http_upstream.c @ 1468:491e5059ea19

read EOF of header only responses in non-buffered proxying
author Igor Sysoev <igor@sysoev.ru>
date Sun, 09 Sep 2007 18:32:53 +0000
parents 6c25a49e548a
children 0a269c464eaf
line wrap: on
line diff
--- a/src/http/ngx_http_upstream.c
+++ b/src/http/ngx_http_upstream.c
@@ -1490,6 +1490,11 @@ ngx_http_upstream_send_response(ngx_http
                 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;