git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@993042
13f79535-47bb-0310-9956-
ffa450edef68
DeltaSession session = null;
try {
session = (DeltaSession) findSession(sessionId);
+ if (session == null) {
+ // A parallel request has called session.invalidate() which has
+ // remove the session from the Manager.
+ return null;
+ }
DeltaRequest deltaRequest = session.getDeltaRequest();
session.lock();
SessionMessage msg = null;
Add support for LAST_ACCESS_AT_START system property to DeltaSession.
(kfujino)
</fix>
+ <fix>
+ Avoid a NPE in the DeltaManager when a parallel request invalidates the
+ session before the current request has a chance to send the replication
+ message. (markt)
+ </fix>
</changelog>
</subsection>
<subsection name="Web applications">