Skip to content

Commit

Permalink
fix config key for dev-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Ramp (u804103) committed Mar 7, 2024
1 parent 22dcfe1 commit 4d6fc50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public static class RestClientInfo {
public RestClientInfo(String interfaceClass, boolean isBean, String configKey) {
this.interfaceClass = interfaceClass;
this.isBean = isBean;
this.configKey = configKey == null ? "" : String.format("quarkus.rest.client.%s", configKey);
this.configKey = configKey == null ? "" : String.format("quarkus.rest-client.%s", configKey);
}
}

Expand Down

0 comments on commit 4d6fc50

Please sign in to comment.