Skip to content

Commit

Permalink
[ELY-2746] Change Keycloak version in testsuite to 24.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Skyllarr committed Apr 15, 2024
1 parent dde455d commit 50cf5bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class KeycloakContainer extends GenericContainer<KeycloakContainer> {
public static final String KEYCLOAK_ADMIN_USER = "admin";
public static final String KEYCLOAK_ADMIN_PASSWORD = "admin";

private static final String KEYCLOAK_IMAGE = "quay.io/keycloak/keycloak:latest";
private static final String KEYCLOAK_IMAGE = "quay.io/keycloak/keycloak:24.0.1";
private static final int KEYCLOAK_PORT_HTTP = 8080;
private static final int KEYCLOAK_PORT_HTTPS = 8443;

Expand Down Expand Up @@ -58,4 +58,4 @@ protected void configure() {
public String getAuthServerUrl() {
return String.format("http://%s:%s", getContainerIpAddress(), useHttps ? getMappedPort(KEYCLOAK_PORT_HTTPS) : getMappedPort(KEYCLOAK_PORT_HTTP));
}
}
}

0 comments on commit 50cf5bb

Please sign in to comment.