From 2ed2c411a982e297d6b756f8a21939fadb2a0a93 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 3 Aug 2012 23:01:18 -0400 Subject: Add underscore in front of post_live_migration. Rename this method of the compute manager by just adding an underscore in front of the name. This is a private method and is not part of the rpc api. Make that more apparent by using the private method naming convention. Change-Id: I66633ffd59c6d670ccc748855fb1dcbac7df222d --- nova/tests/compute/test_compute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/tests') diff --git a/nova/tests/compute/test_compute.py b/nova/tests/compute/test_compute.py index e0305cadc..8561d5124 100644 --- a/nova/tests/compute/test_compute.py +++ b/nova/tests/compute/test_compute.py @@ -1765,7 +1765,7 @@ class ComputeTestCase(BaseTestCase): # start test self.mox.ReplayAll() - self.compute.post_live_migration(c, inst_ref, dest) + self.compute._post_live_migration(c, inst_ref, dest) # make sure floating ips are rewritten to destinatioin hostname. flo_refs = db.floating_ip_get_all_by_host(c, dest) -- cgit