From: kedar kulkarni Date: Tue, 13 May 2014 06:31:52 +0000 (+0530) Subject: Corrected the syntax of port_update call to NVSD agent X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=86ea75bb827eb5ee414a707478fc9adb75454148;p=openstack-build%2Fneutron-build.git 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 --- 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,