From 7b67228bc12c6c9ed78ef1db8595ae359a86ec45 Mon Sep 17 00:00:00 2001 From: Trent Nelson Date: Fri, 15 Jan 2021 12:02:20 -0700 Subject: [PATCH] net/net.sh: Quite pre-emptible instance status check --- net/net.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/net/net.sh b/net/net.sh index 44fdecb29b..a6b9755d6f 100755 --- a/net/net.sh +++ b/net/net.sh @@ -723,8 +723,7 @@ checkPremptibleInstances() { # immediately after its successfully pinged. for ipAddress in "${validatorIpList[@]}"; do ( - set -x - timeout 5s ping -c 1 "$ipAddress" | tr - _ + timeout 5s ping -c 1 "$ipAddress" | tr - _ &>/dev/null ) || { cat <