Skip to content

Commit a84c258

Browse files
committed
Slightly fewer iterations
1 parent 2f9e5e6 commit a84c258

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function passed {
2323

2424
wait_for_ready() {
2525
local check_path="${1:-/}"
26-
for i in {1..30}; do
26+
for i in {1..20}; do
2727
if curl -sf "http://localhost:8080${check_path}" >/dev/null 2>&1; then
2828
return 0
2929
fi
@@ -33,7 +33,7 @@ wait_for_ready() {
3333
}
3434

3535
wait_for_removed() {
36-
for i in {1..30}; do
36+
for i in {1..20}; do
3737
if ! docker ps -aq --filter "name=http-echo-tests" | grep -q .; then
3838
return 0
3939
fi

0 commit comments

Comments
 (0)