Skip to content

Commit dd500ed

Browse files
committed
Revert "bugfix: reduce flakiness of server startup wait"
This reverts commit a65eb80.
1 parent 2404d52 commit dd500ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wait_for_local_port.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ wait_for_local_port() {
55
local count=0
66
local ret=1
77
echo "waiting for S3:$port"
8-
while [[ "$ret" -eq "10" && "$count" -lt "$timeout" ]] ; do
8+
while [[ "$ret" -eq "1" && "$count" -lt "$timeout" ]] ; do
99
nc -z -w 1 localhost $port
1010
ret=$?
1111
if [ ! "$ret" -eq "0" ]; then

0 commit comments

Comments
 (0)