Open GoogleCodeExporter opened 8 years ago
if (!_sticky && !_trackingHostValve.isIgnoredRequest() &&
!isContainerSessionLookup()
)
I modify it such:
if (!_sticky && !_trackingHostValve.isIgnoredRequest() )
Original comment by xueshufe...@163.com
on 17 Sep 2012 at 2:32
The best would be to have a test that reproduces the issue to see if there is
an issue and if this is a valid fix.
NonStickySessionsIntegrationTest contains several tests that cover cases like
this
(https://github.com/magro/memcached-session-manager/blob/master/core/src/test/ja
va/de/javakaffee/web/msm/integration/NonStickySessionsIntegrationTest.java).
Original comment by martin.grotzke
on 17 Sep 2012 at 8:01
the function testParallelRequestsDontCauseDataLoss and
testParallelRequestsToSameTomcatInstanceIssue111 may use http1.1, it must
use connection : keep-alive。
my application use nginx+tomcat。 nginx use “connection:close” default。
my pressure test result is:
connect:close, failure rate is 50%
connect:keep-alive, failure rate is 4%
when connect:keep-alive, failure rate is small, the test case maybe
don't cover it。
Original comment by xueshufe...@163.com
on 18 Sep 2012 at 2:25
So the test has to be altered to also test with connection:close, right? I'll
check this as soon as I have time (right now I'm under high workload), of
course you're also invited to change/extend the test to make this issue
reproducable / testable.
Original comment by martin.grotzke
on 18 Sep 2012 at 9:32
Hi,
Am facing the same issue in multiple tabs and raised a defect here issue
id(164).
Even though changing the code to
if (!_sticky && !_trackingHostValve.isIgnoredRequest() )
in memcachedsessionservice.java am facing the issue. Please help me.
Original comment by shaikirf...@gmail.com
on 25 May 2013 at 1:13
xueshuf...,
Hello, I saw you issue. Could I ask you some question ?
Original comment by zheng.gu...@gmail.com
on 11 Nov 2014 at 8:03
Issues are moved to github, this one is now
https://github.com/magro/memcached-session-manager/issues/192.
Original comment by martin.grotzke
on 24 Aug 2015 at 5:07
Original issue reported on code.google.com by
xueshufe...@163.com
on 17 Sep 2012 at 2:28