# HG changeset patch # User Igor Sysoev # Date 1312206774 0 # Node ID 07d1aa82899b702e1d583c12a22d3769e58c2a28 # Parent 3e51832c82156046d02315cb9102b1bc2061b490 always set timer in discard body handler, this fixes the cases when request for static file is redirected by error_page to an SSI page patch by Maxim Dounin diff -r 3e51832c8215 -r 07d1aa82899b src/http/ngx_http_request.c --- a/src/http/ngx_http_request.c Mon Aug 01 13:26:55 2011 +0000 +++ b/src/http/ngx_http_request.c Mon Aug 01 13:52:54 2011 +0000 @@ -2123,11 +2123,11 @@ if (r->discard_body) { r->read_event_handler = ngx_http_discarded_request_body_handler; + ngx_add_timer(r->connection->read, clcf->lingering_timeout); if (r->lingering_time == 0) { r->lingering_time = ngx_time() + (time_t) (clcf->lingering_time / 1000); - ngx_add_timer(r->connection->read, clcf->lingering_timeout); } }