Skip to content

Commit 8c40db6

Browse files
committed
fix keycloak client timeout error message: quarkus.oidc.devui.web-client-timeout -> quarkus.keycloak.devservices.web-client-timeout
I originally added the property name to the error message here: #36883 However, the property to control the timeout was split from the devui property here: #43609 Which was a good change, but this error message was forgotten about, so let's fix it!
1 parent 221e4b2 commit 8c40db6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/devservices/keycloak/src/main/java/io/quarkus/devservices/keycloak/KeycloakDevServicesProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ private static String getAdminToken(WebClient client, String keycloakUrl) {
748748
.await().atMost(capturedDevServicesConfiguration.webClientTimeout());
749749
} catch (TimeoutException e) {
750750
LOG.error("Admin token can not be acquired due to a client connection timeout. " +
751-
"You may try increasing the `quarkus.oidc.devui.web-client-timeout` property.");
751+
"You may try increasing the `quarkus.keycloak.devservices.web-client-timeout` property.");
752752
} catch (Throwable t) {
753753
LOG.error("Admin token can not be acquired", t);
754754
}

0 commit comments

Comments
 (0)