Loading CHANGES +3 −0 Original line number Diff line number Diff line Changes with Apache 2.0.21-dev *) Provide vhost and request strings when ExtendedStatus is on. [Greg Ames] *) Fix some issues with the pod and prefork: check the pod *after* processing a connection so that a server processing a time- consuming request bails out as soon as practical; when the Loading modules/http/http_core.c +2 −2 Original line number Diff line number Diff line Loading @@ -282,7 +282,7 @@ static int ap_process_http_connection(conn_rec *c) /* process the request if it was read without error */ ap_update_child_status(AP_CHILD_THREAD_FROM_ID(c->id), SERVER_BUSY_WRITE, NULL); ap_update_child_status(AP_CHILD_THREAD_FROM_ID(c->id), SERVER_BUSY_WRITE, r); if (r->status == HTTP_OK) ap_process_request(r); Loading @@ -292,7 +292,7 @@ static int ap_process_http_connection(conn_rec *c) if (!c->keepalive || c->aborted) break; ap_update_child_status(AP_CHILD_THREAD_FROM_ID(c->id), SERVER_BUSY_KEEPALIVE, NULL); ap_update_child_status(AP_CHILD_THREAD_FROM_ID(c->id), SERVER_BUSY_KEEPALIVE, r); apr_pool_destroy(r->pool); if (ap_graceful_stop_signalled()) Loading Loading
CHANGES +3 −0 Original line number Diff line number Diff line Changes with Apache 2.0.21-dev *) Provide vhost and request strings when ExtendedStatus is on. [Greg Ames] *) Fix some issues with the pod and prefork: check the pod *after* processing a connection so that a server processing a time- consuming request bails out as soon as practical; when the Loading
modules/http/http_core.c +2 −2 Original line number Diff line number Diff line Loading @@ -282,7 +282,7 @@ static int ap_process_http_connection(conn_rec *c) /* process the request if it was read without error */ ap_update_child_status(AP_CHILD_THREAD_FROM_ID(c->id), SERVER_BUSY_WRITE, NULL); ap_update_child_status(AP_CHILD_THREAD_FROM_ID(c->id), SERVER_BUSY_WRITE, r); if (r->status == HTTP_OK) ap_process_request(r); Loading @@ -292,7 +292,7 @@ static int ap_process_http_connection(conn_rec *c) if (!c->keepalive || c->aborted) break; ap_update_child_status(AP_CHILD_THREAD_FROM_ID(c->id), SERVER_BUSY_KEEPALIVE, NULL); ap_update_child_status(AP_CHILD_THREAD_FROM_ID(c->id), SERVER_BUSY_KEEPALIVE, r); apr_pool_destroy(r->pool); if (ap_graceful_stop_signalled()) Loading