]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_proxy: Tone down a warning message that appears when the same backend
authorNick Kew <niq@apache.org>
Sun, 11 Jul 2010 06:21:06 +0000 (06:21 +0000)
committerNick Kew <niq@apache.org>
Sun, 11 Jul 2010 06:21:06 +0000 (06:21 +0000)
website is reverse proxied two or more times into the frontend URL space.
PR: 48947
minfrin's patch

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

STATUS
modules/proxy/mod_proxy.c

diff --git a/STATUS b/STATUS
index 3b7bb967684ce83206b05816c91ef018a106ef8a..a00b7330e52ef73dc77acf676bfaedff943ee78d 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -97,14 +97,6 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
     2.2.x patch: http://people.apache.org/~minfrin/htcacheclean-pid.patch
     +1: minfrin, sf, trawick
 
-  * mod_proxy: Tone down a warning message that appears when the same
-    backend website is reverse proxied two or more times into the
-    frontend URL space.
-    PR: 48947
-    Trunk patch: http://svn.apache.org/viewvc?rev=925850&view=rev
-    2.2.x patch: http://people.apache.org/~minfrin/httpd-proxy-worker-already-used.patch
-    +1: minfrin, trawick, rjung
-
   * Introduce SSLFIPS directive to support OpenSSL FIPS_mode; permits all
     builds of mod_ssl to use 'SSLFIPS off' for portability, but the proper
     build of openssl is required for 'SSLFIPS on'.  
index 70dddbb5af62682f17fa4391a7be98fcb9d24480..6a370563fb8ea8e04f448b90d160d94f7c188123 100644 (file)
@@ -1362,7 +1362,7 @@ static const char *
             if (err)
                 return apr_pstrcat(cmd->temp_pool, "ProxyPass ", err, NULL);
         } else {
-            ap_log_error(APLOG_MARK, APLOG_WARNING, 0, cmd->server,
+            ap_log_error(APLOG_MARK, APLOG_INFO, 0, cmd->server,
                          "worker %s already used by another worker", worker->name);
         }
         PROXY_COPY_CONF_PARAMS(worker, conf);
@@ -1779,7 +1779,7 @@ static const char *add_member(cmd_parms *cmd, void *dummy, const char *arg)
         if ((err = ap_proxy_add_worker(&worker, cmd->pool, conf, name)) != NULL)
             return apr_pstrcat(cmd->temp_pool, "BalancerMember ", err, NULL);
     } else {
-            ap_log_error(APLOG_MARK, APLOG_WARNING, 0, cmd->server,
+            ap_log_error(APLOG_MARK, APLOG_INFO, 0, cmd->server,
                          "worker %s already used by another worker", worker->name);
     }
     PROXY_COPY_CONF_PARAMS(worker, conf);