summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@yahoo.com>2010-09-10 12:25:45 -0700
committerVishvananda Ishaya <vishvananda@yahoo.com>2010-09-10 12:25:45 -0700
commit214f15b5eac2100937473ee8990f8ec8a31fb142 (patch)
tree10398ded3a889c7dad431a356417ee7238ba1daf
parentf8a25024ff4a3225b3c7ba7de0927916b39126fc (diff)
dhcpbridge needed host instead of node name
-rwxr-xr-xbin/nova-dhcpbridge4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/nova-dhcpbridge b/bin/nova-dhcpbridge
index c4795cca2..42eaf4bcb 100755
--- a/bin/nova-dhcpbridge
+++ b/bin/nova-dhcpbridge
@@ -53,7 +53,7 @@ def add_lease(_mac, ip_address, _hostname, _interface):
network_manager = utils.import_object(FLAGS.network_manager)
network_manager.lease_fixed_ip(None, ip_address)
else:
- rpc.cast("%s.%s" % (FLAGS.network_topic, FLAGS.node_name),
+ rpc.cast("%s.%s" % (FLAGS.network_topic, FLAGS.host),
{"method": "lease_fixed_ip",
"args": {"context": None,
"address": ip_address}})
@@ -71,7 +71,7 @@ def del_lease(_mac, ip_address, _hostname, _interface):
network_manager = utils.import_object(FLAGS.network_manager)
network_manager.release_fixed_ip(None, ip_address)
else:
- rpc.cast("%s.%s" % (FLAGS.network_topic, FLAGS.node_name),
+ rpc.cast("%s.%s" % (FLAGS.network_topic, FLAGS.host),
{"method": "release_fixed_ip",
"args": {"context": None,
"address": ip_address}})