Increase signature confirmation timeout to fix wallet sanity (#7283) (#7332)

automerge
This commit is contained in:
mergify[bot]
2019-12-06 13:29:33 -08:00
committed by Grimes
parent 3718bab078
commit 4f33eaa9dd

View File

@ -86,7 +86,8 @@ nodes=(
--rpc-port 18899" --rpc-port 18899"
) )
for i in $(seq 1 $extraNodes); do if [[ extraNodes -gt 0 ]]; then
for i in $(seq 1 $extraNodes); do
portStart=$((8100 + i * 50)) portStart=$((8100 + i * 50))
portEnd=$((portStart + 49)) portEnd=$((portStart + 49))
nodes+=( nodes+=(
@ -96,7 +97,8 @@ for i in $(seq 1 $extraNodes); do
--label dyn$i \ --label dyn$i \
--init-complete-file init-complete-node$((2 + i)).log" --init-complete-file init-complete-node$((2 + i)).log"
) )
done done
fi
numNodes=$((2 + extraNodes)) numNodes=$((2 + extraNodes))
pids=() pids=()
@ -313,7 +315,7 @@ flag_error() {
if ! $skipSetup; then if ! $skipSetup; then
clear_config_dir "$SOLANA_CONFIG_DIR" clear_config_dir "$SOLANA_CONFIG_DIR"
multinode-demo/setup.sh multinode-demo/setup.sh --hashes-per-tick sleep
else else
verifyLedger verifyLedger
fi fi
@ -365,7 +367,7 @@ while [[ $iteration -le $iterations ]]; do
echo "--- Wallet sanity ($iteration)" echo "--- Wallet sanity ($iteration)"
( (
set -x set -x
timeout 90s scripts/wallet-sanity.sh --url http://127.0.0.1"$walletRpcPort" timeout 60s scripts/wallet-sanity.sh --url http://127.0.0.1"$walletRpcPort"
) || flag_error ) || flag_error
iteration=$((iteration + 1)) iteration=$((iteration + 1))