summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@gmail.com>2010-08-16 19:03:50 +0000
committerTarmac <>2010-08-16 19:03:50 +0000
commitb07a85167ffde07747fc6e892df46686b95529e8 (patch)
tree90654414cf1c1851b7277a8607130d01f6725fed /bin
parentadcde1a3d8d9fb50e45b794ad90217c03a0aac23 (diff)
parenta96b4c1470ee4e73382178206d8728d2a2ba89cf (diff)
Fixes issues with allocation and deallocation of fixed and elastic addresses.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/nova-dhcpbridge2
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