KEYCLOAK-2741

Don't remove KEYCLOAK_REMEMBERME cookie when sso session expires.
This commit is contained in:
Stian Thorgersen 2016-10-18 16:14:36 +02:00
parent 386bf8d39e
commit 74dad004e3

View file

@ -121,7 +121,6 @@ public class AuthenticationManager {
UserSessionModel cookieSession = session.sessions().getUserSession(realm, token.getSessionState());
if (cookieSession == null || !cookieSession.getId().equals(userSession.getId())) return;
expireIdentityCookie(realm, uriInfo, connection);
expireRememberMeCookie(realm, uriInfo, connection);
} catch (Exception e) {
}