Skip to content

Commit

Permalink
fix for the dhcp issue when multiple ips are associated with vmi
Browse files Browse the repository at this point in the history
neutron has to omit if the ip is secondary ip or
service_health_check_ip.
Fix is added to take care of the above condition

Change-Id: Ie84d2d75dfd125588d69ae46db5b3b5950f3b27c
Closes-bug: 1645414
  • Loading branch information
ymariappan committed Dec 6, 2016
1 parent 80411f7 commit e142733
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -2246,7 +2246,7 @@ def _port_vnc_to_neutron(self, port_obj, port_req_memo=None):
except NoIdError:
continue

if ip_obj.get_service_instance_ip() and ip_obj.get_instance_ip_secondary():
if ip_obj.get_instance_ip_secondary():
continue

if ip_obj.get_service_health_check_ip():
Expand Down

0 comments on commit e142733

Please sign in to comment.