load test: Increase startup timeout

pull/5484/head
Richard Hansen 2022-03-22 20:07:05 -04:00
parent 1c29dcc62d
commit 1ad7e4601f
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ can_connect() {
}
now() { date +%s; }
start=$(now)
while [ $(($(now) - $start)) -le 15 ] && ! can_connect; do
while [ $(($(now) - $start)) -le 60 ] && ! can_connect; do
sleep 1
done
[ "$connected" = true ] \