*) mod_heartmonitor: Set the documented default value

"10" for HeartbeatMaxServers instead of "0". With "0"
     no shared memory slotmem was initialized. [Rainer Jung]


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1900026 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rainer Jung
2022-04-19 08:59:47 +00:00
parent 3814c12e5a
commit 6a0896d693
2 changed files with 4 additions and 1 deletions

View File

@ -0,0 +1,3 @@
*) mod_heartmonitor: Set the documented default value
"10" for HeartbeatMaxServers instead of "0". With "0"
no shared memory slotmem was initialized. [Rainer Jung]

View File

@ -39,7 +39,7 @@
static const ap_slotmem_provider_t *storage = NULL;
static ap_slotmem_instance_t *slotmem = NULL;
static int maxworkers = 0;
static int maxworkers = 10;
module AP_MODULE_DECLARE_DATA heartmonitor_module;