summaryrefslogtreecommitdiff
path: root/ironic/dhcp/neutron.py
diff options
context:
space:
mode:
authorHarald Jensås <hjensas@redhat.com>2022-01-07 16:03:11 +0100
committerHarald Jensås <hjensas@redhat.com>2022-01-10 17:31:25 +0000
commitb1aa0d4c2a576140c094d9d6a41a7ac8ebd1915d (patch)
treef1557f3ea2297532e47ad1ce84278bb4d406f176 /ironic/dhcp/neutron.py
parentfa4cc785760e2d9d3fdebf1db8662aa30105f884 (diff)
downloadironic-b1aa0d4c2a576140c094d9d6a41a7ac8ebd1915d.tar.gz
Add dhcp options for each ip_version once
Currently duplicate DHCP options are added when a port have multiple address in the same address familiy. The duplicate entries cause an internal server error in neutron. This fixes the issue by only adding DHCP options for each IP-version. Story: 2009774 Task: 44255 Change-Id: I8bef819dc3101f88f4e04ea986e1039e34d917ed (cherry picked from commit c4721da2d899e1c51e716577e776c6ee14e2e35e)
Diffstat (limited to 'ironic/dhcp/neutron.py')
-rw-r--r--ironic/dhcp/neutron.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ironic/dhcp/neutron.py b/ironic/dhcp/neutron.py
index 18ccae05c..a5cb09282 100644
--- a/ironic/dhcp/neutron.py
+++ b/ironic/dhcp/neutron.py
@@ -80,9 +80,9 @@ class NeutronDHCPApi(base.BaseDHCP):
update_opts = []
if len(fips) != 0:
- for fip in fips:
- ip_version = \
- ipaddress.ip_address(fip['ip_address']).version
+ ip_versions = {ipaddress.ip_address(fip['ip_address']).version
+ for fip in fips}
+ for ip_version in ip_versions:
for option in dhcp_options:
if option.get('ip_version', 4) == ip_version:
update_opts.append(option)