diff options
author | Akihiro Motoki <motoki@da.jp.nec.com> | 2014-05-28 02:48:30 +0900 |
---|---|---|
committer | Akihiro Motoki <motoki@da.jp.nec.com> | 2014-05-28 02:55:41 +0900 |
commit | e588ee5b470bdca25abc634db3144d2aa9b84554 (patch) | |
tree | 71af4e466be0c75ddcd3d4e2fe3e185b4daef796 /neutron/plugins/nec/nec_plugin.py | |
parent | a657c06d10f2171149c6b1863df36522bdc11cd7 (diff) | |
download | neutron-e588ee5b470bdca25abc634db3144d2aa9b84554.tar.gz |
NEC plugin: Bump L3RPC callback version to 1.1
update_floatingip_statuses RPC call implemented in Icehouse expects
RPC version 1.1 and RPC version of L3RpcCallback of other plugins
was bumped to 1.1, but the version of L3RpcCallback in NEC plugin
was not bumped to 1.1 yet.
Change-Id: I0073a3de9ea0cd59d43c821f9bdaea89bd125a65
Closes-Bug: #1323769
Diffstat (limited to 'neutron/plugins/nec/nec_plugin.py')
-rw-r--r-- | neutron/plugins/nec/nec_plugin.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/neutron/plugins/nec/nec_plugin.py b/neutron/plugins/nec/nec_plugin.py index 78e15da6e1..edeb0021bd 100644 --- a/neutron/plugins/nec/nec_plugin.py +++ b/neutron/plugins/nec/nec_plugin.py @@ -686,8 +686,9 @@ class DhcpRpcCallback(dhcp_rpc_base.DhcpRpcCallbackMixin): class L3RpcCallback(l3_rpc_base.L3RpcCallbackMixin): - # L3PluginApi BASE_RPC_API_VERSION - RPC_API_VERSION = '1.0' + # 1.0 L3PluginApi BASE_RPC_API_VERSION + # 1.1 Support update_floatingip_statuses + RPC_API_VERSION = '1.1' class SecurityGroupServerRpcCallback( |