Skip to content

Commit

Permalink
quarkusio#38445 append label instead of replacing whole URI
Browse files Browse the repository at this point in the history
(cherry picked from commit a4e0228)
  • Loading branch information
troosan authored and gsmet committed Jan 30, 2024
1 parent 7bd8925 commit f5305d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ private int getPort(URI uri) {
private String getFinalURI(String applicationName, String profile) {
String finalURI = baseURI.toString() + "/" + applicationName + "/" + profile;
if (config.label().isPresent()) {
finalURI = "/" + config.label().get();
finalURI += "/" + config.label().get();
}
return finalURI;
}
Expand Down

0 comments on commit f5305d2

Please sign in to comment.