Skip to content

Commit 1d948e9

Browse files
committed
use graceful exit if lister started
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916243 13f79535-47bb-0310-9956-ffa450edef68
1 parent 179b1ac commit 1d948e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/mpm/event/event.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2749,7 +2749,7 @@ static void *APR_THREAD_FUNC start_threads(apr_thread_t * thd, void *dummy)
27492749
APLOGNO(03104)
27502750
"ap_thread_create: unable to create worker thread");
27512751
/* let the parent decide how bad this really is */
2752-
signal_threads(ST_UNGRACEFUL);
2752+
signal_threads(listener_started ? ST_GRACEFUL : ST_UNGRACEFUL);
27532753
clean_child_exit(APEXIT_CHILDSICK);
27542754
}
27552755
threads_created++;

0 commit comments

Comments
 (0)