Skip to content

Commit

Permalink
Merge pull request #39255 from flyinfish/bugfix-rest-client-info
Browse files Browse the repository at this point in the history
Fix config key for dev-ui
  • Loading branch information
geoand authored Mar 7, 2024
2 parents b08707a + 4d6fc50 commit 3e74f4a
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 3e74f4a

Please sign in to comment.