mirror of
https://github.com/nginx/nginx.git
synced 2026-07-10 02:47:15 +00:00
Process events posted by ngx_close_idle_connections() immediately.
Previously, if an event was posted by a read event handler, called by ngx_close_idle_connections(), that event was not processed until the next event loop iteration, which could happen after a timeout.
This commit is contained in:
parent
053e40e5d4
commit
17066ac860
2 changed files with 2 additions and 0 deletions
|
|
@ -736,6 +736,7 @@ ngx_worker_process_cycle(ngx_cycle_t *cycle, void *data)
|
|||
ngx_set_shutdown_timer(cycle);
|
||||
ngx_close_listening_sockets(cycle);
|
||||
ngx_close_idle_connections(cycle);
|
||||
ngx_event_process_posted(cycle, &ngx_posted_events);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -804,6 +804,7 @@ ngx_worker_thread(void *data)
|
|||
ngx_set_shutdown_timer(cycle);
|
||||
ngx_close_listening_sockets(cycle);
|
||||
ngx_close_idle_connections(cycle);
|
||||
ngx_event_process_posted(cycle, &ngx_posted_events);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue