From 8e603024f9d1a6292b9cafffb336966b75eeff35 Mon Sep 17 00:00:00 2001 From: fujinhua Date: Thu, 22 Nov 2018 15:42:46 +0800 Subject: [PATCH] Fix vnf heal logic Change-Id: I45c581a8423695f3287edd664250c1992df3d01b Issue-ID: VFC-1163 Signed-off-by: fujinhua --- lcm/lcm/nf/biz/heal_vnf.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lcm/lcm/nf/biz/heal_vnf.py b/lcm/lcm/nf/biz/heal_vnf.py index 4d32d509..5e013042 100644 --- a/lcm/lcm/nf/biz/heal_vnf.py +++ b/lcm/lcm/nf/biz/heal_vnf.py @@ -143,12 +143,13 @@ class HealVnf(Thread): 'resourceId': vm[0].resourceid, 'vimLevelResourceType': 'vm' } - affected_vnfcs.append({ - 'id': vnfcs[0].vnfcinstanceid, - 'vduId': vnfcs[0].vduid, - 'changeType': chtype, - 'computeResource': vm_resource - }) + if vnfcs: + affected_vnfcs.append({ + 'id': vnfcs[0].vnfcinstanceid, + 'vduId': vnfcs[0].vduid, + 'changeType': chtype, + 'computeResource': vm_resource + }) notification_content = { "id": str(uuid.uuid4()), -- 2.16.6