From ccbb6885b91ecca2a330e00723baa755d4a42f96 Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Thu, 1 Feb 2018 08:34:59 +0000 Subject: [PATCH] * Add some some comment why we do not limit hmax any longer git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1822858 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/proxy_util.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index c8b629e8c7..9260771d0f 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -1841,6 +1841,11 @@ PROXY_DECLARE(apr_status_t) ap_proxy_initialize_worker(proxy_worker *worker, ser ap_mpm_query(AP_MPMQ_MAX_THREADS, &mpm_threads); if (mpm_threads > 1) { + /* + * Do not limit hmax to mpm_threads any longer as we might have + * more processing threads around when mod_http2 is loaded which + * has it's own pool of processing threads on top of this. + */ if (worker->s->hmax == 0) { worker->s->hmax = mpm_threads; }