From 6282c53fe5c32878b92190f1affc2a64b32c5947 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 18 Jan 2019 12:11:12 -0800 Subject: [PATCH] Add iterations with leader rotation enabled and periodic restarts --- ci/iterations-localnet.sh | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/ci/iterations-localnet.sh b/ci/iterations-localnet.sh index 47765acdf5..301a5d1d1d 100755 --- a/ci/iterations-localnet.sh +++ b/ci/iterations-localnet.sh @@ -19,6 +19,17 @@ _ cargo build --all --features="$FEATURES" export PATH=$PWD/target/debug:$PATH export USE_INSTALL=1 -_ ci/localnet-sanity.sh -b -i 256 -# TODO: Enable next line once leader rotation stability is fixed -#_ ci/localnet-sanity.sh -i 256 +# Leader rotation disabled +_ ci/localnet-sanity.sh -b -i 128 + +# Leader rotation disabled, restart all nodes periodically +_ ci/localnet-sanity.sh -b -i 128 -k 16 + +# Leader rotation enabled +_ ci/localnet-sanity.sh -i 128 + +# Leader rotation enabled, restart all nodes periodically +# TODO: Enable +#_ ci/localnet-sanity.sh -i 128 -k 16 + +echo --- fin