Ensure sessions are removed from the Store associated with a PersistentManager.
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@
1042427 13f79535-47bb-0310-9956-
ffa450edef68
* @param session Session to be removed
*/
@Override
- public void remove(Session session) {
+ public void remove(Session session, boolean update) {
- super.remove (session);
+ super.remove (session, update);
if (store != null){
removeSession(session.getIdInternal());
Code clean-up. Replace use of inefficient constructors with more
efficient alternatives. (markt)
</fix>
+ <fix>
+ <bug>50411</bug>: Ensure sessions are removed from the
+ <code>Store</code> associated with a <code>PersistentManager</code>.
+ (markt)
+ </fix>
</changelog>
</subsection>
<subsection name="Coyote">