From 86ea75bb827eb5ee414a707478fc9adb75454148 Mon Sep 17 00:00:00 2001 From: kedar kulkarni Date: Tue, 13 May 2014 12:01:52 +0530 Subject: [PATCH] Corrected the syntax of port_update call to NVSD agent The parameters passed to the agent rpc port_update call in NVSD plugin were wrong. It is corrected now. Change-Id: I9ec8f74695b6ca813ffad9e33502d9a2e0bd1f92 Closes-Bug: 1318909 --- neutron/plugins/oneconvergence/plugin.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/neutron/plugins/oneconvergence/plugin.py b/neutron/plugins/oneconvergence/plugin.py index 2fab91dff..92b9646dc 100644 --- a/neutron/plugins/oneconvergence/plugin.py +++ b/neutron/plugins/oneconvergence/plugin.py @@ -84,9 +84,8 @@ class NVSDPluginV2AgentNotifierApi(rpc.proxy.RpcProxy, def port_update(self, context, port): self.fanout_cast(context, - self.make_msg('port_update', - port=port, - topic=self.topic_port_update)) + self.make_msg('port_update', port=port), + topic=self.topic_port_update) class OneConvergencePluginV2(db_base_plugin_v2.NeutronDbPluginV2, -- 2.45.2