From: fujinhua Date: Tue, 16 Jan 2018 08:27:06 +0000 (+0800) Subject: Fix notify lcm exception deal logic X-Git-Tag: v1.1.0~241 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F73%2F28273%2F1;p=vfc%2Fnfvo%2Flcm.git Fix notify lcm exception deal logic Change-Id: I127e1afea78410b11c2e9ec22be18fb7f979e01c Issue-ID: VFC-654 Signed-off-by: fujinhua --- diff --git a/lcm/ns/vnfs/notify_lcm.py b/lcm/ns/vnfs/notify_lcm.py index 4ec80526..619c671c 100644 --- a/lcm/ns/vnfs/notify_lcm.py +++ b/lcm/ns/vnfs/notify_lcm.py @@ -62,11 +62,11 @@ class NotifyLcm(object): self.exception('unexpected exception') def get_vnfinstid(self, mnfinstid, vnfm_inst_id): + logger.debug("mnfinstid=%s, vnfm_inst_id=%s", mnfinstid, vnfm_inst_id) nfinst = NfInstModel.objects.filter(mnfinstid=mnfinstid, vnfm_inst_id=vnfm_inst_id).first() if nfinst: return nfinst.nfinstid - else: - self.exception('vnfinstid not exist') + raise NSLCMException("vnfinstid not exist") def exception(self, error_msg): logger.error('Notify Lcm failed, detail message: %s' % error_msg)