From a084cfca1a0b45ed632a77540f43e22da45c07cc Mon Sep 17 00:00:00 2001 From: Pavol Mederly Date: Tue, 25 Sep 2018 17:24:41 +0200 Subject: [PATCH] Fix healthcheck mistake --- .../container_files/usr-local-bin/healthcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/midpoint/midpoint-server/container_files/usr-local-bin/healthcheck.sh b/midpoint/midpoint-server/container_files/usr-local-bin/healthcheck.sh index e25c16f..99f8963 100755 --- a/midpoint/midpoint-server/container_files/usr-local-bin/healthcheck.sh +++ b/midpoint/midpoint-server/container_files/usr-local-bin/healthcheck.sh @@ -1,3 +1,3 @@ #!/bin/bash -(set -o pipefail ; curl -k -f http://localhost:443/midpoint/actuator/health | tr -d '[:space:]' | grep -q "\"status\":\"UP\"") || exit 1 +(set -o pipefail ; curl -k -f https://localhost:443/midpoint/actuator/health | tr -d '[:space:]' | grep -q "\"status\":\"UP\"") || exit 1