Merge pull request #234 from snowball-tools/ng-deployment-test

Increase retry interval for checking deployment URL in CI test
This commit is contained in:
Gilbert 2024-09-18 23:21:33 -05:00 committed by GitHub
commit e5a00016c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -140,7 +140,7 @@ fetched_url=$(echo $deployment_records_response | jq -r '.[0].attributes.url')
retry_count=0
max_retries=10
retry_interval=5
retry_interval=10
while true; do
url_response=$(curl -s -o /dev/null -I -w "%{http_code}" $fetched_url)
if [ "$url_response" = "200" ]; then