Skip to content

Commit 9bccfbc

Browse files
authored
chore: Update Keycloak connection log message to reflect config-based setup
1 parent b24ca27 commit 9bccfbc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

user-org-jobs/user-deletion-cleanup/src/main/scala/org/sunbird/job/deletioncleanup/util/KeyCloakConnectionProvider.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class KeyCloakConnectionProvider(config: UserDeletionCleanupConfig) {
2828
val SSO_REALM = config.keycloakRealm
2929
val SSO_POOL_SIZE = config.keycloakPoolSize
3030
if (StringUtils.isBlank(SSO_URL) || StringUtils.isBlank(username) || StringUtils.isBlank(password) || StringUtils.isBlank(CLIENT_ID) || StringUtils.isBlank(SSO_REALM)) {
31-
logger.info("key cloak connection is not provided by Environment variable.")
31+
logger.info("Keycloak connection is not provided by the configuration.")
3232
return null
3333
}
3434

@@ -65,4 +65,4 @@ class KeyCloakConnectionProvider(config: UserDeletionCleanupConfig) {
6565
}
6666

6767

68-
}
68+
}

0 commit comments

Comments
 (0)