From f72f3498656e8b4857001a1f3d194305245d56ba Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Mon, 13 Aug 2012 14:35:47 -0400 Subject: Fix rpc error with live_migration. The topic argument to live_migration was removed on the manager side in rpc API version 1.3, but was not removed from scheduler/rpcapi.py. Remove it now. Change-Id: I0b1c68848f7bd55f6f10c63b9433746f0a343a63 --- nova/tests/scheduler/test_rpcapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/tests') diff --git a/nova/tests/scheduler/test_rpcapi.py b/nova/tests/scheduler/test_rpcapi.py index 109ff36a3..1fbc06390 100644 --- a/nova/tests/scheduler/test_rpcapi.py +++ b/nova/tests/scheduler/test_rpcapi.py @@ -95,7 +95,7 @@ class SchedulerRpcAPITestCase(test.TestCase): self._test_scheduler_api('live_migration', rpc_method='call', block_migration='fake_block_migration', disk_over_commit='fake_disk_over_commit', - instance='fake_instance', dest='fake_dest', topic='fake_topic', + instance='fake_instance', dest='fake_dest', version='1.3') def test_update_service_capabilities(self): -- cgit