diff options
author | Yann Ylavic <ylavic@apache.org> | 2021-10-13 16:30:03 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2021-10-13 16:30:03 +0200 |
commit | 9b432e0ce0705e6cd5f7e9b635452f584554047f (patch) | |
tree | 44ccb52bc57106c0a0ca4a865a021cddae7c025c /modules/generators | |
parent | * mod_http2: I regret my decision to have removed nghttp2 feature checks... (diff) | |
download | apache2-9b432e0ce0705e6cd5f7e9b635452f584554047f.tar.xz apache2-9b432e0ce0705e6cd5f7e9b635452f584554047f.zip |
mod_info: Output AP_MPMQ_MAX_DAEMONS instead of AP_MPMQ_MAX_DAEMON_USED.
The latter is maintained in the parent process only (for maintenance) and is
meaningless in the child process (by design).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1894195 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/generators')
-rw-r--r-- | modules/generators/mod_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/generators/mod_info.c b/modules/generators/mod_info.c index 1662242afe..3b5ae7a725 100644 --- a/modules/generators/mod_info.c +++ b/modules/generators/mod_info.c @@ -475,7 +475,7 @@ static int show_server_settings(request_rec * r) "keep-alive: %d</tt></dt>", (int) (apr_time_sec(serv->timeout)), (int) (apr_time_sec(serv->keep_alive_timeout))); - ap_mpm_query(AP_MPMQ_MAX_DAEMON_USED, &max_daemons); + ap_mpm_query(AP_MPMQ_MAX_DAEMONS, &max_daemons); ap_mpm_query(AP_MPMQ_IS_THREADED, &threaded); ap_mpm_query(AP_MPMQ_IS_FORKED, &forked); ap_rprintf(r, "<dt><strong>MPM Name:</strong> <tt>%s</tt></dt>\n", |