Merge branch 'dmp-refactoring' of https://code-repo.d4science.org/MaDgiK-CITE/argos into dmp-refactoring

This commit is contained in:
amentis 2023-12-12 10:17:12 +02:00
commit 86628a59a7
1 changed files with 2 additions and 3 deletions

View File

@ -24,9 +24,8 @@ public class MyKeycloakAdminRestApi {
@Autowired
public MyKeycloakAdminRestApi(KeycloakClientConfiguration configuration) {
this.configuration = configuration;
try (Keycloak client = this.initClient()) {
this.realm = client.realm(configuration.getProperties().getRealm());
}
Keycloak client = this.initClient();
this.realm = client.realm(configuration.getProperties().getRealm());
logger.info("Custom Keycloak client initialized. Keycloak serving from {}", configuration.getProperties().getServerUrl().replace("/auth", "").replaceAll("https?://", ""));
}