Fix minor bug with bridge_data and ovs nets
[osm/openvim.git] / osm_openvim / httpserver.py
index 43d11cf..8232df5 100644 (file)
@@ -1649,14 +1649,13 @@ def http_post_server_id(tenant_id):
                     if server_net["network"].get('provider:physical', "")[:3] == 'OVS':
                         vlan = str(server_net['network']['provider:vlan'])
                         dhcp_enable = bool(server_net['network']['enable_dhcp'])
+                        vm_dhcp_ip = c2[0]["ip_address"]
+                        config_dic['host_threads'][server['host_id']].insert_task("create-ovs-bridge-port", vlan)
                         if dhcp_enable:
                             dhcp_firt_ip = str(server_net['network']['dhcp_first_ip'])
                             dhcp_last_ip = str(server_net['network']['dhcp_last_ip'])
                             dhcp_cidr = str(server_net['network']['cidr'])
                             gateway = str(server_net['network']['gateway_ip'])
-                            vm_dhcp_ip = c2[0]["ip_address"]
-                            config_dic['host_threads'][server['host_id']].insert_task("create-ovs-bridge-port", vlan)
-
                             set_mac_dhcp(vm_dhcp_ip, vlan, dhcp_firt_ip, dhcp_last_ip, dhcp_cidr, c2[0]['mac'])
                             http_controller = config_dic['http_threads'][threading.current_thread().name]
                             http_controller.ovim.launch_dhcp_server(vlan, dhcp_firt_ip, dhcp_last_ip, dhcp_cidr, gateway)