Skip to content

Commit

Permalink
chore: change connection test retry from 10 to 15 times
Browse files Browse the repository at this point in the history
  • Loading branch information
rsilva-rs committed Oct 16, 2023
1 parent c3538a6 commit 3eb6e3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deploy/deploy
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ test_url() {
then
full_url=$url$test_connection_url_path
echo "Running connection test against: $full_url"
output=$(curl --silent --fail --max-time 10 --retry 10 --retry-delay 5 --retry-connrefused --retry-all-errors "$full_url")
output=$(curl --silent --fail --max-time 10 --retry 15 --retry-delay 5 --retry-connrefused --retry-all-errors "$full_url")
if [[ $? != 0 ]]; then
echo "Connection test has failed with the following test output: $output";
exit 1;
Expand Down

0 comments on commit 3eb6e3b

Please sign in to comment.