summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
authorTrey Morris <trey.morris@rackspace.com>2011-06-23 18:56:31 -0500
committerTrey Morris <trey.morris@rackspace.com>2011-06-23 18:56:31 -0500
commita715174d343c7fd2ed687f561f267343a1370c97 (patch)
tree446c0c3e56c225604bfac2bbf01b9953e41b76eb /nova
parentadc6e0ca99e34820ac8e2f64b8b6965458e5355c (diff)
alter test, alter some debug statements
Diffstat (limited to 'nova')
-rw-r--r--nova/network/manager.py8
-rw-r--r--nova/tests/test_adminapi.py9
2 files changed, 4 insertions, 13 deletions
diff --git a/nova/network/manager.py b/nova/network/manager.py
index 09350a6a2..a7aa49b57 100644
--- a/nova/network/manager.py
+++ b/nova/network/manager.py
@@ -502,8 +502,8 @@ class NetworkManager(manager.SchedulerDependentManager):
def lease_fixed_ip(self, context, mac, address):
"""Called by dhcp-bridge when ip is leased."""
- LOG.debug(_('Leased IP |%s| to mac |%s|'), address, mac,
- context=context)
+ LOG.debug(_('Leased IP |%(address)s| to mac |%(mac)s|'), locals(),
+ context=context)
fixed_ip = self.db.fixed_ip_get_by_address(context, address)
instance = fixed_ip['instance']
if not instance:
@@ -520,8 +520,8 @@ class NetworkManager(manager.SchedulerDependentManager):
def release_fixed_ip(self, context, mac, address):
"""Called by dhcp-bridge when ip is released."""
- LOG.debug(_('Released IP |%s| from mac |%s|'), address, mac,
- context=context)
+ LOG.debug(_('Released IP |%(address)s| from mac |%(mac)s|'), locals(),
+ context=context)
fixed_ip = self.db.fixed_ip_get_by_address(context, address)
instance = fixed_ip['instance']
if not instance:
diff --git a/nova/tests/test_adminapi.py b/nova/tests/test_adminapi.py
index c0bd6fcbf..eb4466781 100644
--- a/nova/tests/test_adminapi.py
+++ b/nova/tests/test_adminapi.py
@@ -57,12 +57,6 @@ class AdminApiTestCase(test.TestCase):
self.context = context.RequestContext(user=self.user,
project=self.project)
- # old line was only to set a network to a project
- # this line is from the middle of the new functionality and makes no
- # sense to call this way, but it makes the tests work
- self.network._get_networks_for_instance(self.context.elevated(), 1,
- self.project.id)
-
def fake_show(meh, context, id):
return {'id': 1, 'properties': {'kernel_id': 1, 'ramdisk_id': 1,
'type': 'machine', 'image_state': 'available'}}
@@ -80,9 +74,6 @@ class AdminApiTestCase(test.TestCase):
self.stubs.Set(rpc, 'cast', finish_cast)
def tearDown(self):
- network_ref = db.project_get_network(self.context,
- self.project.id)
- db.network_disassociate(self.context, network_ref['id'])
self.manager.delete_project(self.project)
self.manager.delete_user(self.user)
super(AdminApiTestCase, self).tearDown()