From: Bill Stoddard Date: Mon, 12 Feb 2001 23:00:24 +0000 (+0000) Subject: This is the wrong place to mark the server ready. Servers need to be marked ready X-Git-Tag: 2.0.11~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=399e45d16a3f4ddf32ee81d723e494db673b30b5;p=apache This is the wrong place to mark the server ready. Servers need to be marked ready in the MPM -after- lingering close processing. This could be playing havoc with perform_idle_server_maintenance. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88125 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/connection.c b/server/connection.c index 375be1dfdd..bf8b8b97ee 100644 --- a/server/connection.c +++ b/server/connection.c @@ -255,7 +255,6 @@ AP_CORE_DECLARE_NONSTD(int) ap_process_http_connection(conn_rec *c) break; } - ap_update_child_status(AP_CHILD_THREAD_FROM_ID(c->id), SERVER_READY, NULL); return OK; }