MaxClients (== ap_daemons_limit) lowered. This leaves junk at the end of
the formerly used part of the scoreboard. If you then decide to raise
MaxClients via graceful, the junk prevents those scoreboard slots from
being used.
This should not impact performance because find_child_by_pid stops its
search when it sees a matching pid. If we don't have a match, something
else is busted.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97287
13f79535-47bb-0310-9956-
ffa450edef68
*result = ap_max_requests_per_child;
return APR_SUCCESS;
case AP_MPMQ_MAX_DAEMONS:
- *result = ap_daemons_limit;
+ *result = server_limit;
return APR_SUCCESS;
}
return APR_ENOTIMPL;