From 6dd17353cd935f2ecfacae4d6049751d852ff7cd Mon Sep 17 00:00:00 2001 From: Ben Sarmiento Date: Sat, 2 Dec 2023 22:21:55 +0100 Subject: [PATCH] Fix healthcheck --- healthcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/healthcheck.sh b/healthcheck.sh index df17c87..8a7ff93 100644 --- a/healthcheck.sh +++ b/healthcheck.sh @@ -1,5 +1,5 @@ #!/bin/sh -response=$(curl -o /dev/null -s -w "%{http_code}" http://localhost:9999/__all__/) +response=$(curl -o /dev/null -s -w "%{http_code}" http://localhost:9999/) if [ "$response" -eq 200 ]; then exit 0 else