From 0cabde172b3b39d0ae5f6101f7622a3260412229 Mon Sep 17 00:00:00 2001 From: Maniack Crudelis Date: Thu, 23 Nov 2017 16:24:17 +0100 Subject: [PATCH] Fix infinite 503 --- sub_scripts/testing_process.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sub_scripts/testing_process.sh b/sub_scripts/testing_process.sh index d4d393c..c117445 100644 --- a/sub_scripts/testing_process.sh +++ b/sub_scripts/testing_process.sh @@ -248,7 +248,7 @@ CHECK_URL () { ECHO_FORMAT "Service temporarily unavailable\n" "lyellow" "bold" # 3 successive error are allowed http503=$(( http503 + 1 )) - if [ $http503 -eq 3 ]; then + if [ $http503 -ge 3 ]; then # Over 3, it's definitively an error curl_error=1 else