Updated to new cache proxy api and log typo fixed

This commit is contained in:
Mauro Mugnaini 2020-12-21 18:02:41 +01:00
parent 3f5d71eb02
commit 70431f83eb
1 changed files with 3 additions and 3 deletions

View File

@ -45,14 +45,14 @@ public class SessionDestroyAction extends SessionAction {
}
} else {
if (log.isDebugEnabled()) {
log.debug("Don't performing OIDC logout according to configuration");
log.debug("Don't perform OIDC logout according to configuration");
}
}
if (log.isDebugEnabled()) {
log.debug("Removing OIDC tokens from cache proxy");
}
JWTCacheProxy.getInstance().removeOIDCToken(user, session);
JWTCacheProxy.getInstance().removeUMAToken(user, session);
JWTCacheProxy.getInstance().removeAllOIDCTokens(user);
JWTCacheProxy.getInstance().removeAllUMATokens(user);
}
}