----- Original Message -----
> Try
> 
> ProxyPreserveHost Off
> 
> <Proxy balancer://default>
>    BalancerMember http://backend01:5080/ route=0
>    BalancerMember http://backend02:5080/ route=2
>    BalancerMember http://backend01:5180/ route=1
>    BalancerMember http://backend02:5180/ route=3
>    ProxySet lbmethod=bybusyness nofailover=Off
>    stickysession=JSESSIONID|jsessionid
> </Proxy>
> 
> ProxyPass / balancer://default/
> ProxyPassReverse / balancer://default
> 

This configuration seems to work correctly - but this a false conclusion.
If you look deeper in log output/files, you will see that there is still
a double slash inside. Fortunately the final request the browser is sending
to the apache-httpd is "/clusterjsp/", so the cookie is considered and the
session is not lost.

But on backend servers you still get the double-slashed request, e.g.:
"10.x.x.x" "17/Sep/2012:10:43:04 +0100" "GET //clusterjsp/ HTTP/1.1" 200 1590 

So when you perform someting like 
javax.servlet.http.HttpServletRequest.getRequestURI()
on an applicationserver, you still will see the "//clusterjsp/".

Errorlog debug:
[Mon Sep 17 10:47:55.699519 2012] [proxy_balancer:trace1] [pid 5463:tid 
140065930422016] mod_proxy_balancer.c(73): [client 10.x.x.x:59115] 
canonicalising URL //default/clusterjsp/
[Mon Sep 17 10:47:55.699558 2012] [proxy_balancer:debug] [pid 5463:tid 
140065930422016] mod_proxy_balancer.c(614): [client 10.x.x.x:59115] AH01172: 
balancer://default: worker (http://backend02.foo:5180/) rewritten to 
http://backend02.foo:5180//clusterjsp/

(attached you will find the whole logfile)


Also with the two patches I mentioned in my first email, its
depended on your config whether you get the doubleslashes or
not in backend.

Maybe we can improve the URL canonicalisation, so that we are
independent of the config? The rfc is on our side ;)


http://www.ietf.org/rfc/rfc3986.txt
 -> 3.3.  Path
    [...]
    path          = path-abempty    ; begins with "/" or is empty
                  / path-absolute   ; begins with "/" but not "//"
                  / path-noscheme   ; begins with a non-colon segment
                  / path-rootless   ; begins with a segment
                  / path-empty      ; zero characters


[Mon Sep 17 10:47:55.603666 2012] [core:trace5] [pid 5463:tid 140065930422016] 
protocol.c(627): [client 10.x.x.x:59115] Request received from client: GET 
/clusterjsp HTTP/1.0
[Mon Sep 17 10:47:55.603847 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(301): [client 10.x.x.x:59115] Headers received from client:
[Mon Sep 17 10:47:55.603877 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Host: mydomain.foo:8080
[Mon Sep 17 10:47:55.603884 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   User-Agent: Mozilla/5.0 (X11; 
Ubuntu; Linux x86_64; rv:15.0) Gecko/20100101 Firefox/15.0.1
[Mon Sep 17 10:47:55.603892 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Accept: 
text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
[Mon Sep 17 10:47:55.603898 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Accept-Language: en-us,en;q=0.5
[Mon Sep 17 10:47:55.603903 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Accept-Encoding: gzip, deflate
[Mon Sep 17 10:47:55.603921 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Cookie: 
JSESSIONID=359c3bad94690428541d6c226f6d.3; 
__utma=85701643.1776763863.1324649383.1324649383.1324649383.1
[Mon Sep 17 10:47:55.603927 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Via: 1.0 proxy.foo:3128 
(squid/2.7.STABLE5)
[Mon Sep 17 10:47:55.603934 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   X-Forwarded-For: 10.x.x.x
[Mon Sep 17 10:47:55.603939 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Cache-Control: max-age=259200
[Mon Sep 17 10:47:55.603967 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Connection: keep-alive
[Mon Sep 17 10:47:55.604025 2012] [authz_core:debug] [pid 5463:tid 
140065930422016] mod_authz_core.c(828): [client 10.x.x.x:59115] AH01628: 
authorization result: granted (no directives)
[Mon Sep 17 10:47:55.604058 2012] [core:trace3] [pid 5463:tid 140065930422016] 
request.c(227): [client 10.x.x.x:59115] request authorized without 
authentication by access_checker_ex hook: /clusterjsp
[Mon Sep 17 10:47:55.604094 2012] [proxy_balancer:trace1] [pid 5463:tid 
140065930422016] mod_proxy_balancer.c(73): [client 10.x.x.x:59115] 
canonicalising URL //default/clusterjsp
[Mon Sep 17 10:47:55.604155 2012] [proxy_balancer:debug] [pid 5463:tid 
140065930422016] mod_proxy_balancer.c(292): [client 10.x.x.x:59115] AH01160: 
Found value 359c3bad94690428541d6c226f6d.3 for stickysession JSESSIONID
[Mon Sep 17 10:47:55.604189 2012] [proxy_balancer:debug] [pid 5463:tid 
140065930422016] mod_proxy_balancer.c(302): [client 10.x.x.x:59115] AH01161: 
Found route 3
[Mon Sep 17 10:47:55.604219 2012] [proxy_balancer:debug] [pid 5463:tid 
140065930422016] mod_proxy_balancer.c(614): [client 10.x.x.x:59115] AH01172: 
balancer://default: worker (http://backend02.foo:5180/) rewritten to 
http://backend02.foo:5180//clusterjsp
[Mon Sep 17 10:47:55.604238 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
proxy_util.c(1653): AH00924: worker http://backend02.foo:5180/ shared already 
initialized
[Mon Sep 17 10:47:55.604250 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
proxy_util.c(1693): AH00926: worker http://backend02.foo:5180/ local already 
initialized
[Mon Sep 17 10:47:55.604274 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
mod_proxy.c(1070): [client 10.x.x.x:59115] AH01143: Running scheme balancer 
handler (attempt 0)
[Mon Sep 17 10:47:55.604280 2012] [proxy_http:trace1] [pid 5463:tid 
140065930422016] mod_proxy_http.c(2183): [client 10.x.x.x:59115] HTTP: serving 
URL http://backend02.foo:5180//clusterjsp
[Mon Sep 17 10:47:55.604284 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
proxy_util.c(1978): AH00942: HTTP: has acquired connection for (backend02.foo)
[Mon Sep 17 10:47:55.604289 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
proxy_util.c(2030): [client 10.x.x.x:59115] AH00944: connecting 
http://backend02.foo:5180//clusterjsp to backend02.foo:5180
[Mon Sep 17 10:47:55.604295 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
proxy_util.c(2152): [client 10.x.x.x:59115] AH00947: connected //clusterjsp to 
backend02.foo:5180
[Mon Sep 17 10:47:55.604349 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
proxy_util.c(2342): AH00951: HTTP: backend socket is disconnected.
[Mon Sep 17 10:47:55.604390 2012] [proxy:trace2] [pid 5463:tid 140065930422016] 
proxy_util.c(2404): HTTP: fam 2 socket created to connect to backend02.foo
[Mon Sep 17 10:47:55.608579 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
proxy_util.c(2556): AH00962: HTTP: connection complete to 192.x.x.x:5180 
(backend02.foo)
[Mon Sep 17 10:47:55.608710 2012] [core:trace6] [pid 5463:tid 140065930422016] 
core_filters.c(525): [remote 192.x.x.x:5180] core_output_filter: flushing 
because of FLUSH bucket
[Mon Sep 17 10:47:55.615169 2012] [proxy_http:trace3] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1689): [client 10.x.x.x:59115] Status from 
backend: 301
[Mon Sep 17 10:47:55.615279 2012] [proxy_http:trace4] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1373): [client 10.x.x.x:59115] Headers 
received from backend:
[Mon Sep 17 10:47:55.615317 2012] [proxy_http:trace4] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1375): [client 10.x.x.x:59115] Location: 
http://backend02.foo:5180/clusterjsp/
[Mon Sep 17 10:47:55.615380 2012] [proxy_http:trace4] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1375): [client 10.x.x.x:59115] Content-Type: 
text/html;charset=ISO-8859-1
[Mon Sep 17 10:47:55.615418 2012] [proxy_http:trace4] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1375): [client 10.x.x.x:59115] 
Content-Language: en-US
[Mon Sep 17 10:47:55.615446 2012] [proxy_http:trace4] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1375): [client 10.x.x.x:59115] 
Transfer-Encoding: chunked
[Mon Sep 17 10:47:55.615478 2012] [proxy_http:trace4] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1375): [client 10.x.x.x:59115] Date: Mon, 17 
Sep 2012 08:47:55 GMT
[Mon Sep 17 10:47:55.615534 2012] [proxy_http:trace3] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1936): [client 10.x.x.x:59115] start body send
[Mon Sep 17 10:47:55.615593 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
proxy_util.c(1993): AH00943: http: has released connection for (backend02.foo)
[Mon Sep 17 10:47:55.615678 2012] [http:trace3] [pid 5463:tid 140065930422016] 
http_filters.c(963): [client 10.x.x.x:59115] Response sent with status 301, 
headers:
[Mon Sep 17 10:47:55.615716 2012] [http:trace5] [pid 5463:tid 140065930422016] 
http_filters.c(970): [client 10.x.x.x:59115]   Date: Mon, 17 Sep 2012 08:47:55 
GMT
[Mon Sep 17 10:47:55.615735 2012] [http:trace5] [pid 5463:tid 140065930422016] 
http_filters.c(973): [client 10.x.x.x:59115]   Server: Apache/2.4.3 (Unix) 
OpenSSL/1.0.1c
[Mon Sep 17 10:47:55.615759 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_filters.c(806): [client 10.x.x.x:59115]   Location: 
http://mydomain.foo:8080/clusterjsp/
[Mon Sep 17 10:47:55.615782 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_filters.c(806): [client 10.x.x.x:59115]   Content-Type: 
text/html;charset=ISO-8859-1
[Mon Sep 17 10:47:55.615800 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_filters.c(806): [client 10.x.x.x:59115]   Content-Language: en-US
[Mon Sep 17 10:47:55.615820 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_filters.c(806): [client 10.x.x.x:59115]   Content-Length: 0
[Mon Sep 17 10:47:55.615837 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_filters.c(806): [client 10.x.x.x:59115]   Keep-Alive: timeout=5, max=100
[Mon Sep 17 10:47:55.615854 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_filters.c(806): [client 10.x.x.x:59115]   Connection: Keep-Alive
[Mon Sep 17 10:47:55.615892 2012] [proxy_http:trace2] [pid 5463:tid 
140065930422016] mod_proxy_http.c(2075): [client 10.x.x.x:59115] end body send
[Mon Sep 17 10:47:55.615925 2012] [proxy_balancer:debug] [pid 5463:tid 
140065930422016] mod_proxy_balancer.c(656): [client 10.x.x.x:59115] AH01176: 
proxy_balancer_post_request for (balancer://default)
[Mon Sep 17 10:47:55.615973 2012] [core:trace6] [pid 5463:tid 140065930422016] 
core_filters.c(525): [client 10.x.x.x:59115] core_output_filter: flushing 
because of FLUSH bucket
[Mon Sep 17 10:47:55.699304 2012] [core:trace5] [pid 5463:tid 140065930422016] 
protocol.c(627): [client 10.x.x.x:59115] Request received from client: GET 
/clusterjsp/ HTTP/1.0
[Mon Sep 17 10:47:55.699386 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(301): [client 10.x.x.x:59115] Headers received from client:
[Mon Sep 17 10:47:55.699395 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Host: mydomain.foo:8080
[Mon Sep 17 10:47:55.699402 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   User-Agent: Mozilla/5.0 (X11; 
Ubuntu; Linux x86_64; rv:15.0) Gecko/20100101 Firefox/15.0.1
[Mon Sep 17 10:47:55.699408 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Accept: 
text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
[Mon Sep 17 10:47:55.699425 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Accept-Language: en-us,en;q=0.5
[Mon Sep 17 10:47:55.699432 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Accept-Encoding: gzip, deflate
[Mon Sep 17 10:47:55.699437 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Cookie: 
JSESSIONID=359c3bad94690428541d6c226f6d.3; 
__utma=85701643.1776763863.1324649383.1324649383.1324649383.1
[Mon Sep 17 10:47:55.699442 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Via: 1.0 proxy.foo:3128 
(squid/2.7.STABLE5)
[Mon Sep 17 10:47:55.699447 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   X-Forwarded-For: 10.x.x.x
[Mon Sep 17 10:47:55.699452 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Cache-Control: max-age=259200
[Mon Sep 17 10:47:55.699457 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_request.c(305): [client 10.x.x.x:59115]   Connection: keep-alive
[Mon Sep 17 10:47:55.699479 2012] [authz_core:debug] [pid 5463:tid 
140065930422016] mod_authz_core.c(828): [client 10.x.x.x:59115] AH01628: 
authorization result: granted (no directives)
[Mon Sep 17 10:47:55.699487 2012] [core:trace3] [pid 5463:tid 140065930422016] 
request.c(227): [client 10.x.x.x:59115] request authorized without 
authentication by access_checker_ex hook: /clusterjsp/
[Mon Sep 17 10:47:55.699519 2012] [proxy_balancer:trace1] [pid 5463:tid 
140065930422016] mod_proxy_balancer.c(73): [client 10.x.x.x:59115] 
canonicalising URL //default/clusterjsp/
[Mon Sep 17 10:47:55.699540 2012] [proxy_balancer:debug] [pid 5463:tid 
140065930422016] mod_proxy_balancer.c(292): [client 10.x.x.x:59115] AH01160: 
Found value 359c3bad94690428541d6c226f6d.3 for stickysession JSESSIONID
[Mon Sep 17 10:47:55.699549 2012] [proxy_balancer:debug] [pid 5463:tid 
140065930422016] mod_proxy_balancer.c(302): [client 10.x.x.x:59115] AH01161: 
Found route 3
[Mon Sep 17 10:47:55.699558 2012] [proxy_balancer:debug] [pid 5463:tid 
140065930422016] mod_proxy_balancer.c(614): [client 10.x.x.x:59115] AH01172: 
balancer://default: worker (http://backend02.foo:5180/) rewritten to 
http://backend02.foo:5180//clusterjsp/
[Mon Sep 17 10:47:55.699565 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
proxy_util.c(1653): AH00924: worker http://backend02.foo:5180/ shared already 
initialized
[Mon Sep 17 10:47:55.699570 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
proxy_util.c(1693): AH00926: worker http://backend02.foo:5180/ local already 
initialized
[Mon Sep 17 10:47:55.699576 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
mod_proxy.c(1070): [client 10.x.x.x:59115] AH01143: Running scheme balancer 
handler (attempt 0)
[Mon Sep 17 10:47:55.699583 2012] [proxy_http:trace1] [pid 5463:tid 
140065930422016] mod_proxy_http.c(2183): [client 10.x.x.x:59115] HTTP: serving 
URL http://backend02.foo:5180//clusterjsp/
[Mon Sep 17 10:47:55.699592 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
proxy_util.c(1978): AH00942: HTTP: has acquired connection for (backend02.foo)
[Mon Sep 17 10:47:55.699601 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
proxy_util.c(2030): [client 10.x.x.x:59115] AH00944: connecting 
http://backend02.foo:5180//clusterjsp/ to backend02.foo:5180
[Mon Sep 17 10:47:55.699609 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
proxy_util.c(2152): [client 10.x.x.x:59115] AH00947: connected //clusterjsp/ to 
backend02.foo:5180
[Mon Sep 17 10:47:55.699640 2012] [core:trace6] [pid 5463:tid 140065930422016] 
core_filters.c(525): [remote 192.x.x.x:5180] core_output_filter: flushing 
because of FLUSH bucket
[Mon Sep 17 10:47:55.713676 2012] [proxy_http:trace3] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1689): [client 10.x.x.x:59115] Status from 
backend: 200
[Mon Sep 17 10:47:55.713761 2012] [proxy_http:trace4] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1373): [client 10.x.x.x:59115] Headers 
received from backend:
[Mon Sep 17 10:47:55.713787 2012] [proxy_http:trace4] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1375): [client 10.x.x.x:59115] Server:  
[Mon Sep 17 10:47:55.713812 2012] [proxy_http:trace4] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1375): [client 10.x.x.x:59115] Set-Cookie: 
JSESSIONID=359c3bad94690428541d6c226f6d.3; Path=/clusterjsp; HttpOnly
[Mon Sep 17 10:47:55.713837 2012] [proxy_http:trace4] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1375): [client 10.x.x.x:59115] Content-Type: 
text/html;charset=ISO-8859-1
[Mon Sep 17 10:47:55.713855 2012] [proxy_http:trace4] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1375): [client 10.x.x.x:59115] 
Content-Length: 1590
[Mon Sep 17 10:47:55.713881 2012] [proxy_http:trace4] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1375): [client 10.x.x.x:59115] Date: Mon, 17 
Sep 2012 08:47:55 GMT
[Mon Sep 17 10:47:55.713922 2012] [proxy_http:trace3] [pid 5463:tid 
140065930422016] mod_proxy_http.c(1936): [client 10.x.x.x:59115] start body send
[Mon Sep 17 10:47:55.713974 2012] [http:trace3] [pid 5463:tid 140065930422016] 
http_filters.c(963): [client 10.x.x.x:59115] Response sent with status 200, 
headers:
[Mon Sep 17 10:47:55.713992 2012] [http:trace5] [pid 5463:tid 140065930422016] 
http_filters.c(970): [client 10.x.x.x:59115]   Date: Mon, 17 Sep 2012 08:47:55 
GMT
[Mon Sep 17 10:47:55.714005 2012] [http:trace5] [pid 5463:tid 140065930422016] 
http_filters.c(973): [client 10.x.x.x:59115]   Server: 
[Mon Sep 17 10:47:55.714022 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_filters.c(806): [client 10.x.x.x:59115]   Content-Type: 
text/html;charset=ISO-8859-1
[Mon Sep 17 10:47:55.714037 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_filters.c(806): [client 10.x.x.x:59115]   Content-Length: 1590
[Mon Sep 17 10:47:55.714050 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_filters.c(806): [client 10.x.x.x:59115]   Set-Cookie: 
JSESSIONID=359c3bad94690428541d6c226f6d.3; Path=/clusterjsp; HttpOnly
[Mon Sep 17 10:47:55.714062 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_filters.c(806): [client 10.x.x.x:59115]   Keep-Alive: timeout=5, max=99
[Mon Sep 17 10:47:55.714074 2012] [http:trace4] [pid 5463:tid 140065930422016] 
http_filters.c(806): [client 10.x.x.x:59115]   Connection: Keep-Alive
[Mon Sep 17 10:47:55.714110 2012] [core:trace6] [pid 5463:tid 140065930422016] 
core_filters.c(525): [client 10.x.x.x:59115] core_output_filter: flushing 
because of FLUSH bucket
[Mon Sep 17 10:47:55.714290 2012] [proxy:debug] [pid 5463:tid 140065930422016] 
proxy_util.c(1993): AH00943: http: has released connection for (backend02.foo)
[Mon Sep 17 10:47:55.714323 2012] [proxy_http:trace2] [pid 5463:tid 
140065930422016] mod_proxy_http.c(2075): [client 10.x.x.x:59115] end body send
[Mon Sep 17 10:47:55.714345 2012] [proxy_balancer:debug] [pid 5463:tid 
140065930422016] mod_proxy_balancer.c(656): [client 10.x.x.x:59115] AH01176: 
proxy_balancer_post_request for (balancer://default)
[Mon Sep 17 10:47:55.714380 2012] [core:trace6] [pid 5463:tid 140065930422016] 
core_filters.c(525): [client 10.x.x.x:59115] core_output_filter: flushing 
because of FLUSH bucket

Reply via email to