summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Sullivan <bryan.sullivan@att.com>2016-10-21 22:11:03 -0700
committerBryan Sullivan <bryan.sullivan@att.com>2016-10-21 22:11:03 -0700
commit0cc4839fa71b36eb12a164bb193dd71b700a3001 (patch)
treec2b4a54d93a2e350bdd8ae8d2788da56c20a8ba1
parent10bdb05de0c63877002129bccb0b4b4960a41ab0 (diff)
Reduce pause time
JIRA: VES-1 Change-Id: I42fb000dd5189141e7348722df98d52cb1f3c6b2 Signed-off-by: Bryan Sullivan <bryan.sullivan@att.com>
-rw-r--r--tests/vHello_VES.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/vHello_VES.sh b/tests/vHello_VES.sh
index e8911e7..1b291d7 100644
--- a/tests/vHello_VES.sh
+++ b/tests/vHello_VES.sh
@@ -316,10 +316,10 @@ traffic () {
}
pause () {
- echo "$0: $(date) Pause the VNF (web server) in $1 for a minute to generate a state change fault report (Stopped)"
+ echo "$0: $(date) Pause the VNF (web server) in $1 for 30 seconds to generate a state change fault report (Stopped)"
get_vdu_ip $1
ssh -i /tmp/vHello.pem -x -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ubuntu@$ip "sudo docker pause vHello"
- sleep 60
+ sleep 20
echo "$0: $(date) Unpausing the VNF to generate a state change fault report (Started)"
ssh -i /tmp/vHello.pem -x -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ubuntu@$ip "sudo docker unpause vHello"
}