From b91afb70790a077bf2aa9c55ac1832877b817ec5 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 22 Mar 2019 16:25:27 -0700 Subject: [PATCH] Remove attempt to update the cluster, just restart it (v0.12 is not ready for update) --- ci/testnet-manager.sh | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/ci/testnet-manager.sh b/ci/testnet-manager.sh index 9775276633..1034b06bae 100755 --- a/ci/testnet-manager.sh +++ b/ci/testnet-manager.sh @@ -280,27 +280,16 @@ stop) stop ;; update-or-restart) - if start "" update; then - echo Update successful - else - echo "+++ Update failed, restarting the network" - $metricsWriteDatapoint "testnet-manager update-failure=1" - start - fi + echo "+++ Restarting the network" + start ;; sanity-or-restart) if sanity; then echo Pass else - echo "+++ Sanity failed, updating the network" + echo "+++ Sanity failed, restarting the network" $metricsWriteDatapoint "testnet-manager sanity-failure=1" - if start "" update; then - echo Update successful - else - echo "+++ Update failed, restarting the network" - $metricsWriteDatapoint "testnet-manager update-failure=1" - start - fi + start fi ;; esac