mirror of
https://gitee.com/jmix/cuba.git
synced 2024-12-05 04:38:10 +08:00
PL-10258 IdpLogoutCallbackController should log session id
This commit is contained in:
parent
6013e7c8d4
commit
5654b0988b
@ -77,6 +77,8 @@ public class IdpSessionsWatchDog {
|
||||
);
|
||||
|
||||
for (String idpSessionId : loggedOutIdpSessionIds) {
|
||||
log.debug("IDP Session {} expired. Logout from service providers");
|
||||
|
||||
logoutCallbackInvoker.performLogoutOnServiceProviders(idpSessionId);
|
||||
}
|
||||
});
|
||||
|
@ -84,7 +84,7 @@ public class IdpLogoutCallbackController {
|
||||
return;
|
||||
}
|
||||
|
||||
log.trace("Logout user session by IDP session");
|
||||
log.trace("Logout user session by IDP session {}", idpSessionId);
|
||||
|
||||
AppContext.withSecurityContext(new SecurityContext(systemSession), () ->
|
||||
idpService.logoutUserSession(idpSessionId)
|
||||
|
Loading…
Reference in New Issue
Block a user