Commit 0e521af5 authored by Greg Ames's avatar Greg Ames
Browse files

Provide vhost and abbreviated request strings on ExtendedStatus displays.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89541 13f79535-47bb-0310-9956-ffa450edef68
parent 6b8e346e
Loading
Loading
Loading
Loading
+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
+2 −2
Original line number Diff line number Diff line
@@ -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);
 
@@ -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())