]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r986591 from trunk:
authorJim Jagielski <jim@apache.org>
Wed, 25 Aug 2010 14:16:25 +0000 (14:16 +0000)
committerJim Jagielski <jim@apache.org>
Wed, 25 Aug 2010 14:16:25 +0000 (14:16 +0000)
Don't log errors when we can't send to client, just debug.

Submitted by: jfclere
Reviewed/backported by: jim

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@989125 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/proxy/mod_proxy_ajp.c

diff --git a/STATUS b/STATUS
index b182eb3220d27ab0d502d3591c8afae96e51bae7..7beed996cf341c28c09929697adc94b593c13dae 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -87,10 +87,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
- * mod_proxy_ajp: Don't log error when client disconnects.
-     Trunk version of patch:
-       http://svn.apache.org/viewvc?view=rev&revision=986591
-   +1: jfclere, sf, jim
 
 
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
index 78f8e40299989b3748fe07c7d0a500dbbcadd800..ccb0783fc5284773103600f418a1ca17af2f6481 100644 (file)
@@ -471,7 +471,7 @@ static int ap_proxy_ajp_request(apr_pool_t *p, request_rec *r,
                     }
                     if (ap_pass_brigade(r->output_filters,
                                         output_brigade) != APR_SUCCESS) {
-                        ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
+                        ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
                                       "proxy: error processing body.%s",
                                       r->connection->aborted ?
                                       " Client aborted connection." : "");
@@ -489,7 +489,7 @@ static int ap_proxy_ajp_request(apr_pool_t *p, request_rec *r,
                 APR_BRIGADE_INSERT_TAIL(output_brigade, e);
                 if (ap_pass_brigade(r->output_filters,
                                     output_brigade) != APR_SUCCESS) {
-                    ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
+                    ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
                                   "proxy: error processing end");
                     output_failed = 1;
                 }