mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-20 06:29:53 +01:00
load test: Increase startup timeout
This commit is contained in:
parent
1c29dcc62d
commit
1ad7e4601f
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ can_connect() {
|
||||||
}
|
}
|
||||||
now() { date +%s; }
|
now() { date +%s; }
|
||||||
start=$(now)
|
start=$(now)
|
||||||
while [ $(($(now) - $start)) -le 15 ] && ! can_connect; do
|
while [ $(($(now) - $start)) -le 60 ] && ! can_connect; do
|
||||||
sleep 1
|
sleep 1
|
||||||
done
|
done
|
||||||
[ "$connected" = true ] \
|
[ "$connected" = true ] \
|
||||||
|
|
Loading…
Reference in a new issue