Skip to content

Commit e2c253e

Browse files
JohnGarbuttpriteau
authored andcommitted
Hardcode metadata ipv6 to be off
We hit issues with dhcp ha where the same metadata ipv6 address attempts to be present on two hosts. We simply turn that off for now.
1 parent 0ee646a commit e2c253e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neutron/agent/dhcp/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ def enable_isolated_metadata_proxy(self, network):
746746
self._metadata_routers[network.id] = (
747747
router_ports[0].device_id)
748748

749-
if netutils.is_ipv6_enabled():
749+
if netutils.is_ipv6_enabled() and False:
750750
try:
751751
dhcp_ifaces = [
752752
self.call_driver(

0 commit comments

Comments
 (0)