From: Jim Jagielski Date: Tue, 19 Jan 2016 20:48:24 +0000 (+0000) Subject: Expose the expr X-Git-Tag: 2.5.0-alpha~2353 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ec89deb214106cc2d4f741ce06d70aa7f6c77f6;p=apache Expose the expr git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1725608 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy_balancer.c b/modules/proxy/mod_proxy_balancer.c index ffc2ef60a7..f1c0a6f146 100644 --- a/modules/proxy/mod_proxy_balancer.c +++ b/modules/proxy/mod_proxy_balancer.c @@ -1526,7 +1526,7 @@ static int balancer_handler(request_rec *r) "FactorSetStatus" "ElectedBusyLoadToFrom", r); if (set_worker_hc_param_f) { - ap_rputs("MethodIntervalPassesFailsURI", r); + ap_rputs("MethodIntervalPassesFailsURIExpr", r); } ap_rputs("\n", r); @@ -1561,7 +1561,8 @@ static int balancer_handler(request_rec *r) ap_rprintf(r, "%d", (int)apr_time_sec(worker->s->interval)); ap_rprintf(r, "%d (%d)", worker->s->passes,worker->s->pcount); ap_rprintf(r, "%d (%d)", worker->s->fails, worker->s->fcount); - ap_rprintf(r, "%s", worker->s->hcuri); + ap_rprintf(r, "%s", worker->s->hcuri); + ap_rprintf(r, "%s", worker->s->hcexpr); } ap_rputs("\n", r);