You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2018/02/01 08:34:59 UTC

svn commit: r1822858 - /httpd/httpd/trunk/modules/proxy/proxy_util.c

Author: rpluem
Date: Thu Feb  1 08:34:59 2018
New Revision: 1822858

URL: http://svn.apache.org/viewvc?rev=1822858&view=rev
Log:
* Add some some comment why we do not limit hmax any longer

Modified:
    httpd/httpd/trunk/modules/proxy/proxy_util.c

Modified: httpd/httpd/trunk/modules/proxy/proxy_util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/proxy_util.c?rev=1822858&r1=1822857&r2=1822858&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/proxy_util.c (original)
+++ httpd/httpd/trunk/modules/proxy/proxy_util.c Thu Feb  1 08:34:59 2018
@@ -1841,6 +1841,11 @@ PROXY_DECLARE(apr_status_t) ap_proxy_ini
 
         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;
             }