From d0e01472b9c7a60e89173cf88756165bd0034516 Mon Sep 17 00:00:00 2001 From: Joachim Van Herwegen Date: Thu, 20 Jul 2023 17:04:39 +0200 Subject: [PATCH] chore: Increase retry timer when validating configs --- test/deploy/validate-configs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/deploy/validate-configs.sh b/test/deploy/validate-configs.sh index 9364e8b73..4fddc5b4e 100755 --- a/test/deploy/validate-configs.sh +++ b/test/deploy/validate-configs.sh @@ -25,7 +25,7 @@ else fi printf " - %s\n" "${CONFIG_ARRAY[@]}" -mkdir -p test/tmp/data +mkdir -p test/tmp/data echo "$TEST_NAME - Building and installing package" npm pack --loglevel warn npm install -g solid-community-server-*.tgz --loglevel warn @@ -72,7 +72,7 @@ run_server_with_config () { cat test/tmp/"$CONFIG_NAME" else echo "$TEST_NAME($CONFIG_NAME) - Attempting HTTP access to the server" - if curl -sfkI -X GET --retry 15 --retry-connrefused --retry-delay 1 $CSS_BASE_URL > test/tmp/"$CONFIG_NAME"-curl; then + if curl -sfkI -X GET --retry 15 --retry-connrefused --retry-delay 5 $CSS_BASE_URL > test/tmp/"$CONFIG_NAME"-curl; then echo "$TEST_NAME($CONFIG_NAME) - SUCCESS: server reached" FAILURE=0 else