increase startup timeout for localnet sanity (#2534)

This commit is contained in:
Rob Walker 2019-01-23 15:06:08 -08:00 committed by GitHub
parent bae7612f36
commit 6aa80e431d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ waitForAllNodesToInit() {
SECONDS=
for initCompleteFile in "${initCompleteFiles[@]}"; do
while [[ ! -r $initCompleteFile ]]; do
if [[ $SECONDS -ge 30 ]]; then
if [[ $SECONDS -ge 240 ]]; then
echo "^^^ +++"
echo "Error: $initCompleteFile not found in $SECONDS seconds"
exit 1