Skip to content

Commit

Permalink
eclipse-jkube#579 - Fixed paths
Browse files Browse the repository at this point in the history
Signed-off by: Domenico Loiacono <[email protected]>
  • Loading branch information
domenico.loiacono committed Feb 22, 2021
1 parent 7cf8194 commit 16a3a03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private Probe discoverQuarkusHealthCheck(int initialDelay, String subPath) {
return new ProbeBuilder()
.withNewHttpGet()
.withNewPort(asInteger(getConfig(Config.PORT)))
.withPath(Paths.get(getConfig(Config.HEALTH_PATH), subPath).toString())
.withPath(Paths.get("/", getConfig(Config.HEALTH_PATH), subPath).toString())
.withScheme(getConfig(Config.SCHEME))
.endHttpGet()
.withFailureThreshold(asInteger(getConfig(Config.FAILURE_THRESHOLD)))
Expand Down

0 comments on commit 16a3a03

Please sign in to comment.