Update AuthenticationManager.java (#26586)

Fix typo in log message for unlogged clients

Signed-off-by: alcalin <alexcalin02@gmail.com>
This commit is contained in:
alcalin 2024-02-01 14:56:26 +01:00 committed by GitHub
parent 0c3e6d731c
commit 59b2dd69e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -446,7 +446,7 @@ public class AuthenticationManager {
boolean allClientsLoggedOut = notLoggedOutSessions.isEmpty();
if (! allClientsLoggedOut) {
logger.warnf("Some clients have been not been logged out for user %s in %s realm: %s",
logger.warnf("Some clients have not been logged out for user %s in %s realm: %s",
userSession.getUser().getUsername(), realm.getName(),
notLoggedOutSessions.stream()
.map(AuthenticatedClientSessionModel::getClient)