Correct ./net.sh sanity argument order
This commit is contained in:
parent
596f611ede
commit
9ccd362461
|
@ -60,10 +60,11 @@ for zone in "$@"; do
|
||||||
net/"$cloudProvider".sh info
|
net/"$cloudProvider".sh info
|
||||||
echo "--- net.sh sanity [$cloudProvider:$zone]"
|
echo "--- net.sh sanity [$cloudProvider:$zone]"
|
||||||
ok=true
|
ok=true
|
||||||
timeout 5m net/net.sh sanity $zone \
|
timeout 5m net/net.sh sanity \
|
||||||
${NO_LEDGER_VERIFY:+-o noLedgerVerify} \
|
${NO_LEDGER_VERIFY:+-o noLedgerVerify} \
|
||||||
${NO_VALIDATOR_SANITY:+-o noValidatorSanity} \
|
${NO_VALIDATOR_SANITY:+-o noValidatorSanity} \
|
||||||
${REJECT_EXTRA_NODES:+-o rejectExtraNodes} || ok=false
|
${REJECT_EXTRA_NODES:+-o rejectExtraNodes} \
|
||||||
|
$zone || ok=false
|
||||||
|
|
||||||
net/net.sh logs
|
net/net.sh logs
|
||||||
$ok
|
$ok
|
||||||
|
|
Loading…
Reference in New Issue