summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2001-07-25 20:48:53 +0000
committerJeff Trawick <trawick@apache.org>2001-07-25 20:48:53 +0000
commit83cf542b3d85932c2b7803f1d2fe52d6f8002ad1 (patch)
tree1866e90f0fb3420f32bc358731f9b257bda9b2bf
parent9b4256883c783615a17b9502f52cc284fcd7b2c7 (diff)
downloadhttpd-83cf542b3d85932c2b7803f1d2fe52d6f8002ad1.tar.gz
fix the "server seems busy" message so that it really logs
the number of children we're about to spawn git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89710 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--server/mpm/threaded/threaded.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm/threaded/threaded.c b/server/mpm/threaded/threaded.c
index 4050e059b0..ee232081f1 100644
--- a/server/mpm/threaded/threaded.c
+++ b/server/mpm/threaded/threaded.c
@@ -1036,7 +1036,7 @@ static void perform_idle_server_maintenance(void)
"to increase StartServers, ThreadsPerChild "
"or Min/MaxSpareThreads), "
"spawning %d children, there are around %d idle "
- "threads, and %d total children", idle_spawn_rate,
+ "threads, and %d total children", free_length,
idle_thread_count, total_non_dead);
}
for (i = 0; i < free_length; ++i) {