]> granicus.if.org Git - apache/commitdiff
mod_proxy_balancer: It's totally unclear what Drn, Dis, Ign, Stby means.
authorChristophe Jaillet <jailletc36@apache.org>
Mon, 10 Dec 2012 21:35:16 +0000 (21:35 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Mon, 10 Dec 2012 21:35:16 +0000 (21:35 +0000)
PR 52478

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1419796 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/proxy/mod_proxy_balancer.c

diff --git a/CHANGES b/CHANGES
index 11ed9c6c06641c7aa45cd474dd88ca12ed584ee0..8a127252dc31e8cf0bc34bbb7e8f0a6b3da3a39b 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.0
 
+  *) mod_proxy_balancer: Improve output
+     PR 52478 [Danijel <dt-ng rbfh de>]
+  
   *) core: Add LogLevelOverride directive that allows to override the
      loglevel for clients from certain IPs. This also works for things
      like the SSL handshake where <If> LogLevel ... </If> is evaluated
index 0429ac91f8bddab6e2eb1c604552e9980df56332..261cd5f81f5eb097f6c1c00c75227bd3124e084f 100644 (file)
@@ -1535,7 +1535,11 @@ static int balancer_handler(request_rec *r)
                       NULL);
             ap_rputs("\"></td></tr>\n", r);
             ap_rputs("<tr><td>Status:</td>", r);
-            ap_rputs("<td><table><tr><th>Ign</th><th>Drn</th><th>Dis</th><th>Stby</th></tr>\n<tr>", r);
+            ap_rputs("<td><table><tr>"
+                     "<th>Ignore Errors</th>"
+                     "<th>Draining Mode</th>"
+                     "<th>Disabled</th>"
+                     "<th>Hot Standby</th></tr>\n<tr>", r);
             create_radio("w_status_I", (PROXY_WORKER_IGNORE_ERRORS & wsel->s->status), r);
             create_radio("w_status_N", (PROXY_WORKER_DRAIN & wsel->s->status), r);
             create_radio("w_status_D", (PROXY_WORKER_DISABLED & wsel->s->status), r);