Issue #1675
This commit is contained in:
parent
a1f614fd0e
commit
56bf71aec2
|
@ -762,7 +762,8 @@ public abstract class AbstractSessionCache extends ContainerLifeCycle implements
|
||||||
_sessionDataStore.delete(oldId); //delete the session data with the old id
|
_sessionDataStore.delete(oldId); //delete the session data with the old id
|
||||||
_sessionDataStore.store(newId, session.getSessionData()); //save the session data with the new id
|
_sessionDataStore.store(newId, session.getSessionData()); //save the session data with the new id
|
||||||
}
|
}
|
||||||
LOG.info("Session id {} swapped for new id {}", oldId, newId);
|
if (LOG.isDebugEnabled())
|
||||||
|
LOG.debug ("Session id {} swapped for new id {}", oldId, newId);
|
||||||
return session;
|
return session;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -905,7 +905,7 @@ public class Session implements SessionHandler.SessionIf
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
LOG.info("Session {} already being invalidated", _sessionData.getId());
|
if (LOG.isDebugEnabled()) LOG.debug("Session {} already being invalidated", _sessionData.getId());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue