From a630d905d1f56ee2ff51635b5de38307e9ae452e Mon Sep 17 00:00:00 2001 From: Zhenmei Date: Wed, 12 Oct 2016 01:41:08 -0400 Subject: [PATCH] Fix update dhcp bindings The patch Ife6263b7cf1759a2fc309205552eb79138d512a1 support configuration of both name and uuid for parameter dhcp_profile. All places which calling method build_server_config should add the profile id to the return dict. Change-Id: I2c55bf203f7b101defa0f27fdd0168a6c6ba7358 --- vmware_nsx/shell/admin/plugins/nsxv3/resources/dhcp_binding.py | 1 + 1 file changed, 1 insertion(+) diff --git a/vmware_nsx/shell/admin/plugins/nsxv3/resources/dhcp_binding.py b/vmware_nsx/shell/admin/plugins/nsxv3/resources/dhcp_binding.py index 91b0c1edd7..1f8e8d0706 100644 --- a/vmware_nsx/shell/admin/plugins/nsxv3/resources/dhcp_binding.py +++ b/vmware_nsx/shell/admin/plugins/nsxv3/resources/dhcp_binding.py @@ -93,6 +93,7 @@ def nsx_update_dhcp_bindings(resource, event, trigger, **kwargs): project_name='admin') server_data = nsxlib.native_dhcp.build_server_config( network, subnet, port, net_tags) + server_data['dhcp_profile_id'] = dhcp_profile_uuid dhcp_server = dhcp_server_resource.create(**server_data) LOG.info(_LI("Created logical DHCP server %(server)s for " "network %(network)s"),