diff options
| author | Vishvananda Ishaya <vishvananda@gmail.com> | 2010-08-16 19:03:50 +0000 |
|---|---|---|
| committer | Tarmac <> | 2010-08-16 19:03:50 +0000 |
| commit | b07a85167ffde07747fc6e892df46686b95529e8 (patch) | |
| tree | 90654414cf1c1851b7277a8607130d01f6725fed /bin | |
| parent | adcde1a3d8d9fb50e45b794ad90217c03a0aac23 (diff) | |
| parent | a96b4c1470ee4e73382178206d8728d2a2ba89cf (diff) | |
Fixes issues with allocation and deallocation of fixed and elastic addresses.
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/nova-dhcpbridge | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/nova-dhcpbridge b/bin/nova-dhcpbridge index b1ad1c8fe..f70a4482c 100755 --- a/bin/nova-dhcpbridge +++ b/bin/nova-dhcpbridge @@ -69,7 +69,7 @@ def init_leases(interface): """Get the list of hosts for an interface.""" net = model.get_network_by_interface(interface) res = "" - for address in net.address_objs: + for address in net.assigned_objs: res += "%s\n" % linux_net.host_dhcp(address) return res |
