]> granicus.if.org Git - apache/commitdiff
Merge r1724847, r1725516 from trunk:
authorJim Jagielski <jim@apache.org>
Thu, 21 Jan 2016 16:51:13 +0000 (16:51 +0000)
committerJim Jagielski <jim@apache.org>
Thu, 21 Jan 2016 16:51:13 +0000 (16:51 +0000)
flush errors are TRACE1 in the core output filter now.

Remove APLOGNO after moving log message to
TRACE1 in r1724847.

Submitted by: covener, rjung
Reviewed/backported by: jim

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

CHANGES
STATUS
modules/generators/mod_cgid.c

diff --git a/CHANGES b/CHANGES
index f84e92de3fa72fc01102ec6b1266fd39bdc3d9e9..7fc42f171e2ccb73a215d463a2a0ccb1ec3e6142 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,10 @@
 
 Changes with Apache 2.4.19
 
+  *) mod_cgid: Message AH02550, failure to flush a response to the client,
+     is now logged at TRACE1 level to match the underlying core output filter
+     severity.  [Eric Covener]
+
   *) mod_rewrite: Avoid looping on relative substitutions that
      result in the same filename we started with. PR 58854.
      [Eric Covener]
diff --git a/STATUS b/STATUS
index dcec1f4ac744c1fa91ecc11ab525125ab83f91d1..c0c96ec8f020300ec1c73f4de9876030bd6a6e16 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -112,21 +112,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-  *) mod_rewrite: Avoid looping on relative substitutions that
-     result in the same filename we started with. 
-     PR 58854.
-     trunk patch: http://svn.apache.org/r1724656
-     2.4.x: trunk works
-     +1 covener, jim, rjung
-
-  *) mod_cgid: drop severity of flush error message to match
-     core output filter.
-     trunk patch: http://svn.apache.org/r1724847
-     2.4.x: trunk works.
-     +1 covener, jim, rjung
-     rjung: you might also want to add r1725516 (removing
-            APLOGNO, now that the log level is TRACE1)
-
   *) mod_proxy_fcgi: Suppress HTTP error 503 and message 01075,
      "Error dispatching request", when the cause appears to be
      the client closing the connection. PR58118
index 4cebd0457126b654ade2e82ea2e192b19cdb3910..32a8d3351b0846b7269e26a39f1f25f75ae7b742 100644 (file)
@@ -1673,10 +1673,8 @@ static int cgid_handler(request_rec *r)
 
         rv = ap_pass_brigade(r->output_filters, bb);
         if (rv != APR_SUCCESS) { 
-            /* APLOG_ERR because the core output filter message is at error,
-             * but doesn't know it's passing CGI output 
-             */
-            ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(02550) "Failed to flush CGI output to client");
+            ap_log_rerror(APLOG_MARK, APLOG_TRACE1, rv, r,
+                          "Failed to flush CGI output to client");
         }
     }