summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2017-12-02 18:23:31 +0000
committerStefan Eissing <icing@apache.org>2017-12-02 18:23:31 +0000
commit13de377aef3445282d0fcbc8e343badc0c53f762 (patch)
tree2ad86f1ad4d3305bc06b5b52992b6648790f63ae
parent555571441ccd5e907c0cc25a9d5dddd58236ca06 (diff)
downloadhttpd-13de377aef3445282d0fcbc8e343badc0c53f762.tar.gz
On the 2.4.x branch:
mod_http2: h2_workers.c now in sync with trunk again and backported as intended. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1816977 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/http2/h2_workers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http2/h2_workers.c b/modules/http2/h2_workers.c
index 2df92b2354..e976df94cf 100644
--- a/modules/http2/h2_workers.c
+++ b/modules/http2/h2_workers.c
@@ -160,7 +160,7 @@ static apr_status_t slot_pull_task(h2_slot *slot, h2_mplx *m)
* If we still have idle workers, we let the worker be sticky,
* e.g. making it poll the task's h2_mplx instance for more work
* before asking back here. */
- slot->sticks = 1;/*slot->workers->max_workers;*/
+ slot->sticks = slot->workers->max_workers;
return rv;
}
slot->sticks = 0;