]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Follow up to r1847232.
authorChristophe Jaillet <jailletc36@apache.org>
Fri, 14 Jun 2019 11:46:18 +0000 (11:46 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Fri, 14 Jun 2019 11:46:18 +0000 (11:46 +0000)
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

modules/proxy/mod_proxy_balancer.c

index 7093633a0cd5e7685a6d5b4cb082c36649a36524..0ca13fd343cda1662da4b35b699b0cb10e7294ba 100644 (file)
@@ -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;