Merge "Bug 93: Package upload script should use port 8008 in place of 8888" into...
authorRajesh Velandy <rajesh.velandy@riftio.com>
Tue, 25 Oct 2016 21:23:22 +0000 (23:23 +0200)
committerGerrit Code Review <root@osm.etsi.org>
Tue, 25 Oct 2016 21:23:22 +0000 (23:23 +0200)
rwlaunchpad/plugins/rwnsm/rift/tasklets/rwnsmtasklet/rwnsmtasklet.py

index cf03857..79b004f 100755 (executable)
@@ -4097,7 +4097,10 @@ class NsManager(object):
 
         # Terminate the instances/networks assocaited with this nw service
         self._log.debug("Terminating the network service %s", nsr_id)
-        yield from self._nsrs[nsr_id].terminate()
+        try :
+            yield from self._nsrs[nsr_id].terminate()
+        except Exception as e:
+            self.log.exception("Failed to terminate NSR[id=%s]", nsr_id)
 
         # Unref the NSD
         yield from self.nsd_unref_by_nsr_id(nsr_id)