diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-02-15 18:53:48 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-02-15 18:53:48 +0000 |
commit | d74b66c82c283696f0f8b0bfb5fa0e836725e18a (patch) | |
tree | 326818c73f3aff0d9467ddcdca261b654e476eb2 /src | |
parent | 37a6905cb1db0438540681c97c0d4fee1f9b8b68 (diff) | |
download | nginx-d74b66c82c283696f0f8b0bfb5fa0e836725e18a.tar.gz nginx-d74b66c82c283696f0f8b0bfb5fa0e836725e18a.zip |
finalize request to allow post_action
Diffstat (limited to 'src')
-rw-r--r-- | src/http/ngx_http_request.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index c2e18b64c..96286597b 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -1834,9 +1834,7 @@ closed: ngx_log_error(NGX_LOG_INFO, c->log, err, "client closed prematurely connection"); - ngx_http_close_request(r, 0); - - return; + ngx_http_finalize_request(r, 0); } |