commit a2a3bb52fe057d720b536609bc345643b85ff898
parent 7864cfec258588626f9cf6336e5b925d96aa4e5f
Author: MS <ms@taler.net>
Date: Mon, 12 Oct 2020 15:00:38 +0200
fix service check
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/buildbot/checks.sh b/buildbot/checks.sh
@@ -56,7 +56,7 @@ URL="https://shop.${DEPLOYMENT}.${DOMAIN}/"
http_status_code=$(curl \
-s $URL -o /dev/null \
-w "%{http_code}")
-if ! test 200 = $http_status_code; then
+if ! test 302 = $http_status_code; then
printf "%s failed\n" $URL
printf "$error_fmt" \
"Blog did not restart correctly" \