You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the maxActiveSessions limit is reached on tomcat 8.5 we get
java.lang.IllegalStateException: null
at com.hazelcast.session.HazelcastSessionManager.checkMaxActiveSessions(HazelcastSessionManager.java:354) ~[hazelcast-tomcat85-sessionmanager-1.1.4-SNAPSHOT.jar!/:na]
at com.hazelcast.session.HazelcastSessionManager.createSession(HazelcastSessionManager.java:136) ~[hazelcast-tomcat85-sessionmanager-1.1.4-SNAPSHOT.jar!/:na]
at org.apache.catalina.connector.Request.doGetSession(Request.java:3075) ~[tomcat-embed-core-8.5.34.jar!/:8.5.34]
this is because the wrong String reference is used, standardManager.createSession.ise, should be managerBase.createSession.ise
When the maxActiveSessions limit is reached on tomcat 8.5 we get
this is because the wrong String reference is used, standardManager.createSession.ise, should be managerBase.createSession.ise
hazelcast-tomcat-sessionmanager/tomcat85/src/main/java/com/hazelcast/session/HazelcastSessionManager.java
Line 348 in 1eb0d79
The text was updated successfully, but these errors were encountered: