From: bryan Date: Wed, 1 Mar 2017 17:50:50 +0000 (-0800) Subject: Force pass in taker-setup clean function. X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F71%2F29571%2F1;p=models.git Force pass in taker-setup clean function. JIRA: MODELS-23 If some est resources are not found (harmless) the script would exit with fail() and prevent cleanup of the tacker container in the calling script. Change-Id: I8429ba4a6d6084ab56c0ecd07f6f3eead8522743 Signed-off-by: bryan --- diff --git a/tests/utils/tacker-setup.sh b/tests/utils/tacker-setup.sh index 1d48aab..d2afa71 100644 --- a/tests/utils/tacker-setup.sh +++ b/tests/utils/tacker-setup.sh @@ -424,6 +424,7 @@ function clean () { pid=($(neutron router-port-list vnf_private_router|grep -v name|awk '{print $2}')); for id in ${pid[@]}; do neutron router-interface-delete vnf_private_router vnf_private; done neutron router-delete vnf_private_router neutron net-delete vnf_private + pass } start=`date +%s`