Set Default timeout to 120s

This commit is contained in:
Daniel Berteaud 2024-01-21 22:08:05 +01:00
parent cc68a47bf2
commit 08cfeb97b0
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ check_tcp() {
wait_for() {
TYPE="$1"
URI="$2"
TIMEOUT="${3:-30}"
TIMEOUT="${3:-120}"
SECONDS=0
while [ "${SECONDS}" -lt "${TIMEOUT}" ] && ! "check_${TYPE}" "${URI}"; do