From bdbd27526ae7fdf91257a7764c1262f96a26c680 Mon Sep 17 00:00:00 2001 From: vitikkan Date: Wed, 25 May 2016 15:03:52 +0300 Subject: Added 60 sec delay before launching instances in healthcheck This delay should be removed after resolving Jira case APEX-149. The purpose is to give some time to populate openflow rules by SDN controller in case of odl_l2 scenario. Change-Id: I05c0b82a7544e934d82f1fa37e2f146aab03f7b9 Signed-off-by: vitikkan --- testcases/OpenStack/healthcheck/healthcheck.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/testcases/OpenStack/healthcheck/healthcheck.sh b/testcases/OpenStack/healthcheck/healthcheck.sh index 611c100c5..899f96b59 100755 --- a/testcases/OpenStack/healthcheck/healthcheck.sh +++ b/testcases/OpenStack/healthcheck/healthcheck.sh @@ -182,6 +182,11 @@ info "...Neutron OK!" info "Testing Nova API..." ################################# +# This delay should be removed after resolving Jira case APEX-149. +# The purpose is to give some time to populate openflow rules +# by SDN controller in case of odl_l2 scenario. +sleep 60 + nova boot --flavor 2 --image ${image_1} --nic net-id=${net1_id} ${instance_1} debug "nova instance '${instance_1}' booted on ${net_1}." nova boot --flavor 2 --image ${image_1} --nic net-id=${net1_id} ${instance_2} -- cgit 1.2.3-korg