diff options
author | Yann Ylavic <ylavic@apache.org> | 2016-04-25 23:50:40 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2016-04-25 23:50:40 +0200 |
commit | bc55f0eb19a97a92ca17ed03991aa0cb6e5904ca (patch) | |
tree | dd4513068b89ec6802fbc45b547382082a097b4b /server/mpm/event/event.c | |
parent | Fix a typo (diff) | |
download | apache2-bc55f0eb19a97a92ca17ed03991aa0cb6e5904ca.tar.xz apache2-bc55f0eb19a97a92ca17ed03991aa0cb6e5904ca.zip |
event: update worker score keepalive status.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1740910 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | server/mpm/event/event.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/mpm/event/event.c b/server/mpm/event/event.c index 76f3467650..885ea5a05e 100644 --- a/server/mpm/event/event.c +++ b/server/mpm/event/event.c @@ -1199,6 +1199,8 @@ read_request: start_lingering_close_blocking(cs); } else if (cs->pub.state == CONN_STATE_CHECK_REQUEST_LINE_READABLE) { + ap_update_child_status_from_conn(sbh, SERVER_BUSY_KEEPALIVE, c); + /* It greatly simplifies the logic to use a single timeout value per q * because the new element can just be added to the end of the list and * it will stay sorted in expiration time sequence. If brand new |