Merge lp:~vishvananda/nova/lp692716 into lp:~hudson-openstack/nova/trunk

Proposed by Vish Ishaya
Status: Merged
Approved by: Vish Ishaya
Approved revision: 470
Merged at revision: 473
Proposed branch: lp:~vishvananda/nova/lp692716
Merge into: lp:~hudson-openstack/nova/trunk
Diff against target: 13 lines (+1/-2)
1 file modified
nova/network/manager.py (+1/-2)
To merge this branch: bzr merge lp:~vishvananda/nova/lp692716
Reviewer Review Type Date Requested Status
Eric Day (community) Approve
Josh Kearney (community) Approve
Rick Clark (community) Approve
Review via email: mp+44274@code.launchpad.net

Description of the change

This stops the nova-network dhcp ip from being added to all of the compute hosts.

To post a comment you must log in.
Revision history for this message
Rick Clark (dendrobates) wrote :

looks good

review: Approve
Revision history for this message
Josh Kearney (jk0) wrote :

lgtm

review: Approve
Revision history for this message
Eric Day (eday) wrote :

lgtm

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'nova/network/manager.py'
2--- nova/network/manager.py 2010-12-08 20:59:22 +0000
3+++ nova/network/manager.py 2010-12-20 20:12:10 +0000
4@@ -361,8 +361,7 @@
5 """Sets up matching network for compute hosts."""
6 network_ref = db.network_get_by_instance(context, instance_id)
7 self.driver.ensure_bridge(network_ref['bridge'],
8- FLAGS.flat_interface,
9- network_ref)
10+ FLAGS.flat_interface)
11
12 def setup_fixed_ip(self, context, address):
13 """Setup dhcp for this network."""