summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2023-01-09 12:10:33 +0000
committerJoe Orton <jorton@apache.org>2023-01-09 12:10:33 +0000
commit7db7d2852058192e8f0f35f406b8740cc75ddd1b (patch)
tree45cb6ebb7f3ace8ba7ff8b1da46f604a08f37ef0
parent0a9e96e190fae0815f7d29fe7a2bda3345934916 (diff)
downloadhttpd-7db7d2852058192e8f0f35f406b8740cc75ddd1b.tar.gz
Merge r1756531 from trunk:
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
-rw-r--r--CHANGES3
-rw-r--r--modules/proxy/proxy_util.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index eaf9554f87..83db0b3500 100644
--- 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]
diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c
index e488aa6c00..8267f1b932 100644
--- a/modules/proxy/proxy_util.c
+++ b/modules/proxy/proxy_util.c
@@ -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);
}