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
This commit is contained in:
kedar kulkarni 2014-05-13 12:01:52 +05:30
parent 043b4b69dd
commit f4a18d44d6

View File

@ -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,