log.fine("Connecting with qos : " + connQos.toXml());
String sessionName = e.getSessionInfo().getSessionName().getRelativeName();
log.info("addition of session for '" + sessionName +"' occured");
synchronized (this.replSlaveMap) {
if (!this.replSlaveMap.containsKey(sessionName)) {
I_ReplSlave slave = new ReplSlave(this.global, this, sessionName, connQos.getData());
try {
slave.setDispatcher(false, false); // stop dispatcher without persisting the information
}
catch (Exception ex) {
log.warning("Could not set the dispatcher for '" + sessionName + "' to false when adding the session");
ex.printStackTrace();
}