When a node joins a cluster and it receives all the current sessions, ensure the sessionCreated event is fired if the Manager is configured to replicate session events
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@928482
13f79535-47bb-0310-9956-
ffa450edef68
if (log.isWarnEnabled()) log.warn(sm.getString("deltaManager.loading.existing.session",session.getIdInternal()));
}
add(session);
+ if (notifySessionListenersOnReplication) {
+ session.tellNew();
+ }
}
} catch (ClassNotFoundException e) {
log.error(sm.getString("deltaManager.loading.cnfe", e), e);