There was an error while loading. Please reload this page.
2 parents 5aefb02 + cb88d3b commit 227eb45Copy full SHA for 227eb45
1 file changed
ContainerHandling/traefik/CheckHealth_https.ps1
@@ -20,7 +20,7 @@ public static class Dummy {
20
21
$healthcheckurl = ("https://localhost/" + $env:webserverinstance + "/")
22
try {
23
- $result = Invoke-WebRequest -Uri "($healthcheckurl)Health/System" -UseBasicParsing -TimeoutSec 10
+ $result = Invoke-WebRequest -Uri "$($healthcheckurl)Health/System" -UseBasicParsing -TimeoutSec 10
24
if ($result.StatusCode -eq 200 -and ((ConvertFrom-Json $result.Content).result)) {
25
# Web Client Health Check Endpoint will test Web Client, Service Tier and Database Connection
26
exit 0
0 commit comments