fix error on task_depends not defined
Change-Id: If65158e44cf43558c8eada9c78c11971e6be4af0
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/NG-RO/osm_ng_ro/ns.py b/NG-RO/osm_ng_ro/ns.py
index 1b4e9eb..aa1040d 100644
--- a/NG-RO/osm_ng_ro/ns.py
+++ b/NG-RO/osm_ng_ro/ns.py
@@ -548,8 +548,12 @@
for iface_index, interface in enumerate(target_vdu["interfaces"]):
if interface.get("ns-vld-id"):
net_text = ns_preffix + ":vld." + interface["ns-vld-id"]
- else:
+ elif interface.get("vnf-vld-id"):
net_text = vnf_preffix + ":vld." + interface["vnf-vld-id"]
+ else:
+ self.logger.error("Interface {} from vdu {} not connected to any vld".format(
+ iface_index, target_vdu["vdu-name"]))
+ continue # interface not connected to any vld
extra_dict["depends_on"].append(net_text)
net_item = {x: v for x, v in interface.items() if x in
("name", "vpci", "port_security", "port_security_disable_strategy", "floating_ip")}