From 2580e701412e7eec86a9150305fe0bfec9cdc824 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sun, 24 Feb 2002 20:41:19 +0000 Subject: [PATCH] don't wait nearly so long for child processes to go away the adjustment of the wait time was done too soon now the code should be consistent with 1.3 behavior git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93560 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/mpm_common.c b/server/mpm_common.c index 29075e67e8..761e917eff 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -114,8 +114,8 @@ void ap_reclaim_child_processes(int terminate) * necessary, but we need to allow children a few moments to exit. * Set delay with an exponential backoff. */ - waittime = waittime * 4; apr_sleep(waittime); + waittime = waittime * 4; /* now see who is done */ not_dead_yet = 0; -- 2.50.1