https://issues.apache.org/bugzilla/show_bug.cgi?id=47402
Filip Hanik <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX --- Comment #1 from Filip Hanik <[email protected]> 2009-06-22 09:46:54 PST --- hi Federico, this is intended behavior. The code looks like // Expire all active sessions if (log.isInfoEnabled()) log.info(sm.getString("deltaManager.expireSessions", getName())); Session sessions[] = findSessions(); for (int i = 0; i < sessions.length; i++) { DeltaSession session = (DeltaSession) sessions[i]; if (!session.isValid()) continue; try { session.expire(true, isExpireSessionsOnShutdown()); } catch (Throwable ignore) { // Ignore } } That flag means it wont propagate the "expire" to the other nodes in the cluster But local sessions will always expire upon a graceful shutdown best Filip -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
