mirror of
https://github.com/apache/httpd.git
synced 2025-08-10 02:56:11 +00:00
Revert 1742822, incorrect assumptions here
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1743511 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -148,8 +148,7 @@ static int ap_process_http_async_connection(conn_rec *c)
|
||||
c->keepalive = AP_CONN_UNKNOWN;
|
||||
/* process the request if it was read without error */
|
||||
|
||||
ap_update_child_status(c->sbh, SERVER_BUSY_WRITE,
|
||||
r->the_request ? r : NULL);
|
||||
ap_update_child_status(c->sbh, SERVER_BUSY_WRITE, r);
|
||||
if (r->status == HTTP_OK) {
|
||||
cs->state = CONN_STATE_HANDLER;
|
||||
ap_process_async_request(r);
|
||||
@ -204,8 +203,7 @@ static int ap_process_http_sync_connection(conn_rec *c)
|
||||
c->keepalive = AP_CONN_UNKNOWN;
|
||||
/* process the request if it was read without error */
|
||||
|
||||
ap_update_child_status(c->sbh, SERVER_BUSY_WRITE,
|
||||
r->the_request ? r : NULL);
|
||||
ap_update_child_status(c->sbh, SERVER_BUSY_WRITE, r);
|
||||
if (r->status == HTTP_OK) {
|
||||
if (cs)
|
||||
cs->state = CONN_STATE_HANDLER;
|
||||
|
Reference in New Issue
Block a user