hazelcast / hazelcast-tomcat-sessionmanager

Tomcat Based Web Session Replication
Other
33 stars 37 forks source link

Fixes new session creation on failover #108

Closed alparslanavci closed 3 years ago

alparslanavci commented 3 years ago

When sticky sessions are enabled and failover happens, HazelcastSessionChangeValve was creating new sessions instead of using the existing one because of a concurrency issue. This was causing users to lose access to the current session.

This PR fixes the mentioned issue.

alparslanavci commented 3 years ago

verify