From d85490b842572610083b40922df2c7652dc11682 Mon Sep 17 00:00:00 2001 From: David Garcia Date: Tue, 25 Aug 2020 13:17:25 +0200 Subject: [PATCH] Fix removing the vnf relations from the right list Change-Id: Ib5fadaa6ad266d1756969a01ce34f82389c48d61 Signed-off-by: David Garcia --- osm_lcm/ns.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osm_lcm/ns.py b/osm_lcm/ns.py index 64589ff..48dbae3 100644 --- a/osm_lcm/ns.py +++ b/osm_lcm/ns.py @@ -2458,11 +2458,11 @@ class NsLcm(LcmBase): if vca.get('vdu_id') == r.get('entities')[0].get('id'): if vca_status.get('status') == 'BROKEN': # peer broken: remove relation from list - ns_relations.remove(r) + vnf_relations.remove(r) if vca.get('vdu_id') == r.get('entities')[1].get('id'): if vca_status.get('status') == 'BROKEN': # peer broken: remove relation from list - ns_relations.remove(r) + vnf_relations.remove(r) except Exception: # ignore pass -- 2.25.1