Correct changed dhcp_reservations key name

This commit is contained in:
Joshua Boniface 2020-05-09 10:00:53 -04:00
parent 73eb4fb457
commit 72a38fd437
1 changed files with 2 additions and 2 deletions

View File

@ -339,7 +339,7 @@ add rule inet filter forward ip6 saddr {netaddr6} counter jump {vxlannic}-out
self.stopDHCPServer()
self.startDHCPServer()
@self.zk_conn.ChildrenWatch('/networks/{}/dhcp_reservations'.format(self.vni))
@self.zk_conn.ChildrenWatch('/networks/{}/dhcp4_reservations'.format(self.vni))
def watch_network_dhcp_reservations(new_reservations, event=''):
if event and event.type == 'DELETED':
# The key has been deleted after existing before; terminate this watcher
@ -392,7 +392,7 @@ add rule inet filter forward ip6 saddr {netaddr6} counter jump {vxlannic}-out
filename = '{}/{}'.format(self.dnsmasq_hostsdir, reservation)
ipaddr = zkhandler.readdata(
self.zk_conn,
'/networks/{}/dhcp_reservations/{}/ipaddr'.format(
'/networks/{}/dhcp4_reservations/{}/ipaddr'.format(
self.vni,
reservation
)