From a9996dfce2850765a8a6360c6dc8624b353017eb Mon Sep 17 00:00:00 2001 From: josh <josh@elixxir.io> Date: Fri, 2 Jul 2021 10:46:22 -0700 Subject: [PATCH] Fix pathing issues --- smokeinfra/run.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/smokeinfra/run.sh b/smokeinfra/run.sh index 8aa6943..2723d9c 100755 --- a/smokeinfra/run.sh +++ b/smokeinfra/run.sh @@ -96,15 +96,14 @@ if [ ! -s rid.txt ]; then fi # Kill the last server -echo "KILLING SERVER 0" -echo $PID_SERVER_KILLED +echo "KILLING SERVER 0 EARLY" kill -2 $PID_SERVER_KILLED # Wait for node to handle kill signal sleep 30 echo "CHECKING THAT SERVER 0 WAS KILLED PROPERLY" -cat $SERVERLOGS/server-0.log | grep "Round completed, closing!" > serverClose.txt || true +cat results/server-1.log | grep "Round completed, closing!" > serverClose.txt || true if [ -s serverClose.txt ]; then echo "SERVER 0 CLOSED SUCCESSFULLY" else -- GitLab