# HG changeset patch # User Maxim Dounin # Date 1374750025 -14400 # Node ID 292c92fb05d716c0b152444565c2944b06478b5c # Parent a50e26148d215751c6bdaae5fc774e0792c56009 Upstream: NGX_HTTP_CLIENT_CLOSED_REQUEST no longer reset to 0. The NGX_HTTP_CLIENT_CLOSED_REQUEST code is allowed to happen after we started sending a response (much like NGX_HTTP_REQUEST_TIME_OUT), so there is no need to reset response code to 0 in this case. diff -r a50e26148d21 -r 292c92fb05d7 src/http/ngx_http_upstream.c --- a/src/http/ngx_http_upstream.c Thu Jul 25 15:00:12 2013 +0400 +++ b/src/http/ngx_http_upstream.c Thu Jul 25 15:00:25 2013 +0400 @@ -3405,6 +3405,7 @@ if (u->header_sent && rc != NGX_HTTP_REQUEST_TIME_OUT + && rc != NGX_HTTP_CLIENT_CLOSED_REQUEST && (rc == NGX_ERROR || rc >= NGX_HTTP_SPECIAL_RESPONSE)) { rc = 0;