You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2012/12/10 22:35:17 UTC

svn commit: r1419796 - in /httpd/httpd/trunk: CHANGES modules/proxy/mod_proxy_balancer.c

Author: jailletc36
Date: Mon Dec 10 21:35:16 2012
New Revision: 1419796

URL: http://svn.apache.org/viewvc?rev=1419796&view=rev
Log:
mod_proxy_balancer: It's totally unclear what Drn, Dis, Ign, Stby means. 
PR 52478

Modified:
    httpd/httpd/trunk/CHANGES
    httpd/httpd/trunk/modules/proxy/mod_proxy_balancer.c

Modified: httpd/httpd/trunk/CHANGES
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?rev=1419796&r1=1419795&r2=1419796&view=diff
==============================================================================
--- httpd/httpd/trunk/CHANGES [utf-8] (original)
+++ httpd/httpd/trunk/CHANGES [utf-8] Mon Dec 10 21:35:16 2012
@@ -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

Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_balancer.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_balancer.c?rev=1419796&r1=1419795&r2=1419796&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy_balancer.c (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy_balancer.c Mon Dec 10 21:35:16 2012
@@ -1535,7 +1535,11 @@ static int balancer_handler(request_rec 
                       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);