mirror of
https://github.com/nginx/nginx.git
synced 2025-01-09 07:33:09 -06:00
Fix for connection drops with AIO.
Connections serving content with AIO to fast clients were dropped with "client timed out" messages after send_timeout from response start.
This commit is contained in:
parent
5cc1fb1d5b
commit
b7af402cc4
@ -2274,7 +2274,7 @@ ngx_http_writer(ngx_http_request_t *r)
|
||||
|
||||
if (r->buffered || r->postponed || (r == r->main && c->buffered)) {
|
||||
|
||||
if (!wev->ready && !wev->delayed) {
|
||||
if (!wev->delayed) {
|
||||
ngx_add_timer(wev, clcf->send_timeout);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user