From: Nick Kew Date: Sun, 11 Jul 2010 06:21:06 +0000 (+0000) Subject: mod_proxy: Tone down a warning message that appears when the same backend X-Git-Tag: 2.2.16~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a2631d0ec544d75e3dce582d9b65a45f5af5a9c9;p=thirdparty%2Fapache%2Fhttpd.git 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 minfrin's patch git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@962992 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/STATUS b/STATUS index 3b7bb967684..a00b7330e52 100644 --- 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'. diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 70dddbb5af6..6a370563fb8 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -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);