Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 6DF86200828 for ; Fri, 13 May 2016 18:57:40 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 6C89D16099F; Fri, 13 May 2016 16:57:40 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id B54011602BE for ; Fri, 13 May 2016 18:57:39 +0200 (CEST) Received: (qmail 36350 invoked by uid 500); 13 May 2016 16:57:38 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 36341 invoked by uid 99); 13 May 2016 16:57:38 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 May 2016 16:57:38 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 8423EC053A for ; Fri, 13 May 2016 16:57:38 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.428 X-Spam-Level: X-Spam-Status: No, score=-0.428 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-1.428] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id o8iuOXvyFQzn for ; Fri, 13 May 2016 16:57:38 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id B605A5F4ED for ; Fri, 13 May 2016 16:57:37 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 05044E009C for ; Fri, 13 May 2016 16:57:37 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id E875A3A0113 for ; Fri, 13 May 2016 16:57:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1743704 - /httpd/httpd/branches/2.4.x/modules/http/http_core.c Date: Fri, 13 May 2016 16:57:36 -0000 To: cvs@httpd.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160513165736.E875A3A0113@svn01-us-west.apache.org> archived-at: Fri, 13 May 2016 16:57:40 -0000 Author: wrowe Date: Fri May 13 16:57:36 2016 New Revision: 1743704 URL: http://svn.apache.org/viewvc?rev=1743704&view=rev Log: Revert premature mis-commit of proposed patch (had only meant to test merging Modified: httpd/httpd/branches/2.4.x/modules/http/http_core.c Modified: httpd/httpd/branches/2.4.x/modules/http/http_core.c URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/modules/http/http_core.c?rev=1743704&r1=1743703&r2=1743704&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/modules/http/http_core.c (original) +++ httpd/httpd/branches/2.4.x/modules/http/http_core.c Fri May 13 16:57:36 2016 @@ -148,9 +148,9 @@ static int ap_process_http_async_connect c->keepalive = AP_CONN_UNKNOWN; /* process the request if it was read without error */ + ap_update_child_status(c->sbh, SERVER_BUSY_WRITE, r); if (r->status == HTTP_OK) { cs->state = CONN_STATE_HANDLER; - ap_update_child_status(c->sbh, SERVER_BUSY_WRITE, r); ap_process_async_request(r); /* After the call to ap_process_request, the * request pool may have been deleted. We set @@ -203,10 +203,10 @@ static int ap_process_http_sync_connecti c->keepalive = AP_CONN_UNKNOWN; /* process the request if it was read without error */ + ap_update_child_status(c->sbh, SERVER_BUSY_WRITE, r); if (r->status == HTTP_OK) { if (cs) cs->state = CONN_STATE_HANDLER; - ap_update_child_status(c->sbh, SERVER_BUSY_WRITE, r); ap_process_request(r); /* After the call to ap_process_request, the * request pool will have been deleted. We set