diff options
author | Dan Smith <dansmith@redhat.com> | 2016-03-16 09:54:49 -0700 |
---|---|---|
committer | Dan Smith <dansmith@redhat.com> | 2016-03-16 09:54:49 -0700 |
commit | 1969d89d407668b3582c8eee33e377ea48c860c4 (patch) | |
tree | 6cfc18a1c43a8b37597779e1ae885409fafd524b /nova/console | |
parent | ba99c99ab03ca064361e1178a1e370286dbe62a9 (diff) | |
download | nova-1969d89d407668b3582c8eee33e377ea48c860c4.tar.gz |
Set RPC version aliases for Mitaka
Per our usual procedure, this sets version aliases for the current RPC
versions of all our internal RPC APIs for mitaka.
Change-Id: I455f3b80a9b64dfea42ee1c74685d11ae0178513
Diffstat (limited to 'nova/console')
-rw-r--r-- | nova/console/rpcapi.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/console/rpcapi.py b/nova/console/rpcapi.py index 82038f228b..2f4b5085b0 100644 --- a/nova/console/rpcapi.py +++ b/nova/console/rpcapi.py @@ -49,7 +49,7 @@ class ConsoleAPI(object): 2.0 - Major API rev for Icehouse - ... Icehouse, Juno, Kilo, Liberty support message version 2.0. + ... Icehouse, Juno, Kilo, Liberty, Mitaka support message version 2.0. So, any changes to existing methods in 2.x after that point should be done such that they can handle the version_cap being set to 2.0. @@ -63,6 +63,7 @@ class ConsoleAPI(object): 'juno': '2.0', 'kilo': '2.0', 'liberty': '2.0', + 'mitaka': '2.0', } def __init__(self, topic=None, server=None): |