Add Delay variable to runcql 71/70671/1
authorNelson,Thomas(tn1381)(arthurdent3) <tn1381@att.com>
Wed, 17 Oct 2018 16:55:59 +0000 (12:55 -0400)
committerNelson,Thomas(tn1381)(arthurdent3) <tn1381@att.com>
Wed, 17 Oct 2018 16:55:59 +0000 (12:55 -0400)
Change-Id: If09930012c443d5b04a70c55a1b315b3f2781ff1
Issue-ID: MUSIC-147
Signed-off-by: Nelson,Thomas(tn1381)(arthurdent3) <tn1381@att.com>
distribution/cassandra_job/runcql.sh

index f935a35..2ffd5f2 100644 (file)
@@ -2,11 +2,14 @@
 if [ -z "$TIMEOUT" ]; then
     TIMEOUT=10;
 fi
+if [ -z "$DELAY" ]; then
+    DELAY=60;
+fi
 TO="--request-timeout=$TIMEOUT"
 
 if [ $CASS_HOSTNAME ]; then
-    echo "Sleeping for 60 seconds before running cql";
-    sleep 60;
+    echo "Sleeping for $DELAY seconds before running cql";
+    sleep $DELAY;
     >&2 echo "#############################################"
     >&2 echo "############## Let run cql's ################"
     >&2 echo "#############################################"