Force pass in taker-setup clean function. 71/29571/1
authorbryan <bryan.sullivan@att.com>
Wed, 1 Mar 2017 17:50:50 +0000 (09:50 -0800)
committerbryan <bryan.sullivan@att.com>
Wed, 1 Mar 2017 17:50:50 +0000 (09:50 -0800)
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 <bryan.sullivan@att.com>
tests/utils/tacker-setup.sh

index 1d48aab..d2afa71 100644 (file)
@@ -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`