From: Daniel Ruggeri Date: Tue, 17 Sep 2013 15:46:56 +0000 (+0000) Subject: Add note to balancer manager whether changes will/will not survive a restart X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab9a572188232dd1cad9d9e5c944e9785510d924;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/proxy/mod_proxy_balancer.c b/modules/proxy/mod_proxy_balancer.c index 0f45be7a8b0..ddbbb9ed302 100644 --- a/modules/proxy/mod_proxy_balancer.c +++ b/modules/proxy/mod_proxy_balancer.c @@ -1463,7 +1463,10 @@ static int balancer_handler(request_rec *r) ap_rvputs(r, "
Server Version: ", ap_get_server_description(), "
\n", NULL); ap_rvputs(r, "
Server Built: ", - ap_get_server_built(), "\n
\n", NULL); + ap_get_server_built(), "\n", NULL); + ap_rvputs(r, "
Balancer changes will ", conf->bal_persist ? "" : "NOT ", + "be persisted on restart.
", NULL); + ap_rputs("\n", r); balancer = (proxy_balancer *)conf->balancers->elts; for (i = 0; i < conf->balancers->nelts; i++) {