From e3b4cda47d0931228f7a51459ad674d18ecca320 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Tue, 20 Nov 2012 14:07:04 -0500 Subject: Remove unnecessary topic argument. The instance_update method was setting the topic to self.call(), but the value being passed is the default, so it's unnecessary. Just remove it. Change-Id: Iaabd246b8528a0858ee239e790bfcb13e919399a --- nova/conductor/rpcapi.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nova/conductor/rpcapi.py b/nova/conductor/rpcapi.py index a51b3a9f1..29055f76b 100644 --- a/nova/conductor/rpcapi.py +++ b/nova/conductor/rpcapi.py @@ -39,5 +39,4 @@ class ConductorAPI(nova.openstack.common.rpc.proxy.RpcProxy): return self.call(context, self.make_msg('instance_update', instance_uuid=instance_uuid, - updates=updates), - topic=self.topic) + updates=updates)) -- cgit