diff --git a/changes-entries/69510.txt b/changes-entries/69510.txt new file mode 100644 index 00000000000..ba09b602eac --- /dev/null +++ b/changes-entries/69510.txt @@ -0,0 +1,3 @@ + *) mod_proxy_balancer: Fix the handling of the stickysession configuration + parameter by the balancer manager. PR 69510 + [Yutaka Tokunou ] diff --git a/modules/proxy/mod_proxy_balancer.c b/modules/proxy/mod_proxy_balancer.c index 38ff05c7f2e..984c61f016e 100644 --- a/modules/proxy/mod_proxy_balancer.c +++ b/modules/proxy/mod_proxy_balancer.c @@ -1643,7 +1643,7 @@ static void balancer_display_page(request_rec *r, proxy_server_conf *conf, balancer->max_workers - (int)storage->num_free_slots(balancer->wslot)); if (*balancer->s->sticky) { if (strcmp(balancer->s->sticky, balancer->s->sticky_path)) { - ap_rvputs(r, "", ap_escape_html(r->pool, balancer->s->sticky), " | ", + ap_rvputs(r, "", ap_escape_html(r->pool, balancer->s->sticky), "|", ap_escape_html(r->pool, balancer->s->sticky_path), NULL); } else { @@ -1828,7 +1828,7 @@ static void balancer_display_page(request_rec *r, proxy_server_conf *conf, ap_rputs("\n", r); ap_rputs("Sticky Session:s->sticky, bsel->s->sticky_path)) { - ap_rvputs(r, "value =\"", ap_escape_html(r->pool, bsel->s->sticky), " | ", + ap_rvputs(r, "value =\"", ap_escape_html(r->pool, bsel->s->sticky), "|", ap_escape_html(r->pool, bsel->s->sticky_path), NULL); } else {