]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r1756531 from trunk:
authorJoe Orton <jorton@apache.org>
Mon, 9 Jan 2023 12:10:33 +0000 (12:10 +0000)
committerJoe Orton <jorton@apache.org>
Mon, 9 Jan 2023 12:10:33 +0000 (12:10 +0000)
Follow up to r1750392: reduce AH03408 level to INFO as suggested by wrowe/jim.

Submitted by: ylavic
Reviewed by: jorton, rpluem, jim

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

CHANGES
modules/proxy/proxy_util.c

diff --git a/CHANGES b/CHANGES
index eaf9554f87e1344bc005cdb7b61e143fbf29905d..83db0b3500a42e99e9b617655807ad522cf85c42 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.4.55
 
+  *) mod_proxy: The AH03408 warning for a forcibly closed backend
+     connect is now logged at INFO level.  [Yann Ylavic]
+
   *) mod_ssl: When dumping the configuration, the existence of
      certificate/key files is no longer tested.  [Joe Orton]
 
index e488aa6c00ebf8d8e7a56789e8d5a1092847adee..8267f1b9326e4858d73ff1bbe1b69b27fb4f22f4 100644 (file)
@@ -3121,7 +3121,7 @@ PROXY_DECLARE(apr_status_t) ap_proxy_check_connection(const char *scheme,
                          "%s: backend socket is disconnected.", scheme);
         }
         else {
-            ap_log_error(APLOG_MARK, APLOG_WARNING, 0, server, APLOGNO(03408)
+            ap_log_error(APLOG_MARK, APLOG_INFO, 0, server, APLOGNO(03408)
                          "%s: reusable backend connection is not empty: "
                          "forcibly closed", scheme);
         }