You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2022/04/14 15:26:21 UTC

svn commit: r1899862 - /httpd/httpd/trunk/test/modules/core/test_002_restarts.py

Author: ylavic
Date: Thu Apr 14 15:26:21 2022
New Revision: 1899862

URL: http://svn.apache.org/viewvc?rev=1899862&view=rev
Log:
test/core: Allow for 12 simultaneous connections in test_core_002_01.

It seems that h2load somehow issues more connections than the 6 requested (saw
up to 12), so adapt the MPM event configuration accordingly.


Modified:
    httpd/httpd/trunk/test/modules/core/test_002_restarts.py

Modified: httpd/httpd/trunk/test/modules/core/test_002_restarts.py
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/test/modules/core/test_002_restarts.py?rev=1899862&r1=1899861&r2=1899862&view=diff
==============================================================================
--- httpd/httpd/trunk/test/modules/core/test_002_restarts.py (original)
+++ httpd/httpd/trunk/test/modules/core/test_002_restarts.py Thu Apr 14 15:26:21 2022
@@ -16,14 +16,16 @@ class TestRestarts:
     def _class_scope(self, env):
         conf = HttpdConf(env, extras={
             'base': f"""
-StartServers 1
-ServerLimit 4
-ThreadLimit 2
-ThreadsPerChild 2
-MinSpareThreads 2
-MaxSpareThreads 4
-MaxRequestWorkers 8
-MaxConnectionsPerChild 0
+StartServers            1
+ServerLimit             3
+ThreadLimit             4
+ThreadsPerChild         4
+MinSpareThreads         4
+MaxSpareThreads         6
+MaxRequestWorkers       12
+MaxConnectionsPerChild  0
+
+LogLevel mpm_event:trace6
         """,
         })
         conf.add_vhost_cgi()