aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_upstream.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2005-05-14 18:42:03 +0000
committerIgor Sysoev <igor@sysoev.ru>2005-05-14 18:42:03 +0000
commit3362b8df048ad32b6dd286b37e792f661bb894ea (patch)
tree4d34588122fdddf2213a44afac03f9100228990d /src/http/ngx_http_upstream.c
parenta599375d3b5ae261d30d292a5eb7939623f6e4b1 (diff)
downloadnginx-3362b8df048ad32b6dd286b37e792f661bb894ea.tar.gz
nginx-3362b8df048ad32b6dd286b37e792f661bb894ea.zip
nginx-0.1.30-RELEASE importrelease-0.1.30
*) Bugfix: the worker process may got caught in an endless loop if the SSI was used. *) Bugfix: the response encrypted by SSL may not transferred complete. *) Bugfix: if the length of the response part received at once from proxied or FastCGI server was equal to 500, then nginx returns the 500 response code; in proxy mode the the bug had appeared in 0.1.29 only. *) Bugfix: nginx did not consider the directives with 8 or 9 parameters as invalid. *) Feature: the "return" directive can return the 204 response code. *) Feature: the "ignore_invalid_headers" directive.
Diffstat (limited to 'src/http/ngx_http_upstream.c')
-rw-r--r--src/http/ngx_http_upstream.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/http/ngx_http_upstream.c b/src/http/ngx_http_upstream.c
index f766d7d05..0928fbd85 100644
--- a/src/http/ngx_http_upstream.c
+++ b/src/http/ngx_http_upstream.c
@@ -779,12 +779,6 @@ ngx_http_upstream_process_header(ngx_event_t *rev)
return;
}
- if (n == NGX_HTTP_INTERNAL_SERVER_ERROR) {
- ngx_http_upstream_finalize_request(r, u,
- NGX_HTTP_INTERNAL_SERVER_ERROR);
- return;
- }
-
u->header_in.last += n;
#if 0