summaryrefslogtreecommitdiff
path: root/neutron/agent/securitygroups_rpc.py
diff options
context:
space:
mode:
authorrossella <rsblendido@suse.com>2014-07-23 19:26:12 +0000
committerRossella Sblendido <rossble@gmail.com>2014-08-05 10:14:20 +0000
commit7021f12aba38320d3354684ece477d7920fdaaf8 (patch)
treed90aff09097c59e5ef76b8c520526f1094fc33ba /neutron/agent/securitygroups_rpc.py
parent98e65ca5f39c5558cd9123826c506932fdca6948 (diff)
downloadneutron-7021f12aba38320d3354684ece477d7920fdaaf8.tar.gz
Remove redundant topic from rpc calls
RpcProxy sets by default topic=self.topic, there's no need to specify it explicitly in derived class, unless it is overridden Change-Id: I19b9a67072a7f3c42e3b0e4ba412241a056a79a3 Closes-bug: 1348180
Diffstat (limited to 'neutron/agent/securitygroups_rpc.py')
-rw-r--r--neutron/agent/securitygroups_rpc.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/neutron/agent/securitygroups_rpc.py b/neutron/agent/securitygroups_rpc.py
index 163bfe3394..49f0b7dabf 100644
--- a/neutron/agent/securitygroups_rpc.py
+++ b/neutron/agent/securitygroups_rpc.py
@@ -80,8 +80,7 @@ class SecurityGroupServerRpcApiMixin(object):
return self.call(context,
self.make_msg('security_group_rules_for_devices',
devices=devices),
- version=SG_RPC_VERSION,
- topic=self.topic)
+ version=SG_RPC_VERSION)
class SecurityGroupAgentRpcCallbackMixin(object):