mirror of
https://github.com/apache/httpd.git
synced 2025-08-06 11:06:17 +00:00
Add note to balancer manager whether changes will/will not survive a restart
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1524101 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -1463,7 +1463,10 @@ static int balancer_handler(request_rec *r)
|
||||
ap_rvputs(r, "<dl><dt>Server Version: ",
|
||||
ap_get_server_description(), "</dt>\n", NULL);
|
||||
ap_rvputs(r, "<dt>Server Built: ",
|
||||
ap_get_server_built(), "\n</dt></dl>\n", NULL);
|
||||
ap_get_server_built(), "</dt>\n", NULL);
|
||||
ap_rvputs(r, "<dt>Balancer changes will ", conf->bal_persist ? "" : "NOT ",
|
||||
"be persisted on restart.</dt>", NULL);
|
||||
ap_rputs("</dl>\n", r);
|
||||
balancer = (proxy_balancer *)conf->balancers->elts;
|
||||
for (i = 0; i < conf->balancers->nelts; i++) {
|
||||
|
||||
|
Reference in New Issue
Block a user