Author: markt
Date: Thu Sep 25 19:49:42 2014
New Revision: 1627629
URL: http://svn.apache.org/r1627629
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=57016
When using the PersistentValve do not remove sessions from the store when
persisting them.
Modified:
tomcat/trunk/java/org/apache/catalina/session/PersistentManagerBase.java
tomcat/trunk/webapps/docs/changelog.xml
Modified:
tomcat/trunk/java/org/apache/catalina/session/PersistentManagerBase.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/session/PersistentManagerBase.java?rev=1627629&r1=1627628&r2=1627629&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/session/PersistentManagerBase.java
(original)
+++ tomcat/trunk/java/org/apache/catalina/session/PersistentManagerBase.java
Thu Sep 25 19:49:42 2014
@@ -500,7 +500,7 @@ public abstract class PersistentManagerB
*/
@Override
public void removeSuper(Session session) {
- super.remove (session);
+ super.remove(session, false);
}
/**
Modified: tomcat/trunk/webapps/docs/changelog.xml
URL:
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1627629&r1=1627628&r2=1627629&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Thu Sep 25 19:49:42 2014
@@ -52,6 +52,10 @@
information in the constructor since it then gets logged at undesirable
times such as when using <code>StoreConfig</code>. (markt)
</fix>
+ <fix>
+ <bug>57016</bug>: When using the <code>PersistentValve</code> do not
+ remove sessions from the store when persisting them. (markt)
+ </fix>
</changelog>
</subsection>
<subsection name="Web applications">
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]