From: Christophe Jaillet Date: Fri, 14 Jun 2019 11:46:18 +0000 (+0000) Subject: Follow up to r1847232. X-Git-Tag: 2.5.0-alpha2-ci-test-only~2040 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f1e163de06fad185f1279a75991b91e10392740;p=thirdparty%2Fapache%2Fhttpd.git Follow up to r1847232. There is no point to use "old" numbers in recent commit. Also avoid number duplication. The messages are the same but in different code path, so having different numbers makes sense. This also avoids a warning when running: make update-log-msg-tags git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1861333 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy_balancer.c b/modules/proxy/mod_proxy_balancer.c index 7093633a0cd..0ca13fd343c 100644 --- a/modules/proxy/mod_proxy_balancer.c +++ b/modules/proxy/mod_proxy_balancer.c @@ -1351,7 +1351,7 @@ static int balancer_process_balancer_worker(request_rec *r, proxy_server_conf *c /* by default, all new workers are disabled */ ap_proxy_set_wstatus(PROXY_WORKER_DISABLED_FLAG, 1, nworker); } else { - ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01207) + ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(10163) "%s: failed to add worker %s", bsel->s->name, val); #if APR_HAS_THREADS @@ -1367,7 +1367,7 @@ static int balancer_process_balancer_worker(request_rec *r, proxy_server_conf *c } #endif } else { - ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01207) + ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(10164) "%s: failed to add worker %s", bsel->s->name, val); return HTTP_BAD_REQUEST;