From f2bd1e8213980857708095f43149c5acc1dc5408 Mon Sep 17 00:00:00 2001 From: tierno Date: Thu, 6 Apr 2017 14:25:39 +0200 Subject: [PATCH] Minor changes. sdn_net_id variable not set Change-Id: I0068acdb33deaaba4bad6e6d16cf22b0fba461f2 Signed-off-by: tierno --- vim_thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim_thread.py b/vim_thread.py index 1b518d3e..3c35d6c9 100644 --- a/vim_thread.py +++ b/vim_thread.py @@ -397,6 +397,7 @@ class vim_thread(threading.Thread): net_type = params[1] network = None + sdn_net_id = None sdn_controller = self.vim.config.get('sdn-controller') if sdn_controller and (net_type == "data" or net_type == "ptp"): network = {"name": net_name, "type": net_type} @@ -407,7 +408,6 @@ class vim_thread(threading.Thread): "net '{}' defined as type '{}' has not vlan encapsulation '{}'".format( net_name, net_type, vim_net['encapsulation'])) network["vlan"] = vim_net.get('segmentation_id') - sdn_net_id = None try: sdn_net_id = self.ovim.new_network(network) except (ovimException, Exception) as e: -- 2.17.1