Increase retry interval for checking deployment URL

This commit is contained in:
Nabarun 2024-08-23 11:09:12 +05:30
parent 059863c4b9
commit 13b912d318

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