1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

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


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@925850 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Graham Leggett
2010-03-21 18:18:38 +00:00
parent 3e15a66cec
commit 481e0cadf6

View File

@@ -1378,7 +1378,7 @@ static const char *
if (err) if (err)
return apr_pstrcat(cmd->temp_pool, "ProxyPass ", err, NULL); return apr_pstrcat(cmd->temp_pool, "ProxyPass ", err, NULL);
} else { } 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); "worker %s already used by another worker", worker->name);
} }
PROXY_COPY_CONF_PARAMS(worker, conf); PROXY_COPY_CONF_PARAMS(worker, conf);
@@ -1775,7 +1775,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) if ((err = ap_proxy_add_worker(&worker, cmd->pool, conf, name)) != NULL)
return apr_pstrcat(cmd->temp_pool, "BalancerMember ", err, NULL); return apr_pstrcat(cmd->temp_pool, "BalancerMember ", err, NULL);
} else { } 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); "worker %s already used by another worker", worker->name);
} }
PROXY_COPY_CONF_PARAMS(worker, conf); PROXY_COPY_CONF_PARAMS(worker, conf);