Skip to content

Commit

Permalink
test: increase curl connect timeout in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jnsgruk committed Nov 29, 2024
1 parent a8d6b77 commit e237196
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/spread/deploy-bash/task.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ execute: |
address="$(juju status --format json | jq -r '.applications."zinc-k8s".address')"
# Check Zinc is up and can be reached over HTTP
curl -s \
--connect-timeout 120 \
curl \
--connect-timeout 240 \
--retry-connrefused \
--retry 10 \
--retry-delay 3 \
--retry-max-time 120 \
--retry 40 \
--retry-delay 5 \
--retry-max-time 240 \
"http://${address}:4080/version"
# Get admin password for zinc
Expand Down

0 comments on commit e237196

Please sign in to comment.