mirror of
https://github.com/apache/httpd.git
synced 2025-08-10 02:56:11 +00:00
mod_heartmonitor: Set the documented default value
"10" for HeartbeatMaxServers instead of "0". With "0" no shared memory slotmem was initialized. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1899809 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
4
CHANGES
4
CHANGES
@ -1,6 +1,10 @@
|
||||
-*- coding: utf-8 -*-
|
||||
Changes with Apache 2.5.1
|
||||
|
||||
*) mod_heartmonitor: Set the documented default value
|
||||
"10" for HeartbeatMaxServers instead of "0". With "0"
|
||||
no shared memory slotmem was initialized. [Rainer Jung]
|
||||
|
||||
*) mod_systemd: Systemd socket activation can now be enabled at
|
||||
build time but disabled at run time, if mod_systemd is not
|
||||
loaded. [Lubos Uhliarik <luhliari redhat.com>]
|
||||
|
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user