Skip to content

Commit 227eb45

Browse files
author
Freddy Kristiansen
authored
Merge pull request #2845 from freddydk/master
Issue #2842
2 parents 5aefb02 + cb88d3b commit 227eb45

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ContainerHandling/traefik/CheckHealth_https.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static class Dummy {
2020

2121
$healthcheckurl = ("https://localhost/" + $env:webserverinstance + "/")
2222
try {
23-
$result = Invoke-WebRequest -Uri "($healthcheckurl)Health/System" -UseBasicParsing -TimeoutSec 10
23+
$result = Invoke-WebRequest -Uri "$($healthcheckurl)Health/System" -UseBasicParsing -TimeoutSec 10
2424
if ($result.StatusCode -eq 200 -and ((ConvertFrom-Json $result.Content).result)) {
2525
# Web Client Health Check Endpoint will test Web Client, Service Tier and Database Connection
2626
exit 0

0 commit comments

Comments
 (0)