Sticky connections do not work
Hi guys!
I am trying to configure dispatcher module to use stiky connection for two pages:
/content/mysite/en/event/main.html
/content/mysite/en/event/login.html
So I added to dispatcher.any this code:
/stickyConnectionsFor "/content/mysite/en/event"
After it I restarted apache, opened a page /content/mysite/en/event/main.html in browser and saw that renderId cookie was set. Also in dispatcher.log there was this message:
Setting sticky connection to publisher_pub1
response.headers[Set-Cookie] = "renderid=publisher_pub1; path=/content/mysite/en/event;"
But when I reloaded the page and dispatcher sent my request to another publisher. New renderId cookie was set, in dispatcher log there was:
Setting sticky connection to publisher_pub1
response.headers[Set-Cookie] = "renderid=publisher_pub2; path=/content/mysite/en/event;"
Seems like dispatcher just does not read the renderId cookie and serves requests irrespective of it.
I use Apache web server version 2.2 and dispatcher module version 4.1.4. I used dispatcher 4.1.1, update it, but it did not help. Also I tried to switch off apache mod_security, it did not help too.
Could you help me, please.