summaryrefslogtreecommitdiff
path: root/nova/console
diff options
context:
space:
mode:
authorEric Brown <browne@vmware.com>2017-01-26 14:30:24 -0800
committerSergey Nikitin <snikitin@mirantis.com>2017-02-27 18:37:48 +0400
commitf52521a253ed88e4f01f05696c77fb9cf043da8d (patch)
treeef49906a19a304a9ef38f34a35378a135b50b587 /nova/console
parent63805735c25a54ad1b9b97e05080c1a6153d8e22 (diff)
downloadnova-f52521a253ed88e4f01f05696c77fb9cf043da8d.tar.gz
Add RPC version aliases for Ocata
This adds upgrade level aliases for ocata for all of our services. Change-Id: I28b806ea98318286a02a4b319a6272170dd41689
Diffstat (limited to 'nova/console')
-rw-r--r--nova/console/rpcapi.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/nova/console/rpcapi.py b/nova/console/rpcapi.py
index 3141a7bbfa..4c107f4fb1 100644
--- a/nova/console/rpcapi.py
+++ b/nova/console/rpcapi.py
@@ -40,10 +40,10 @@ class ConsoleAPI(object):
2.0 - Major API rev for Icehouse
- ... Icehouse, Juno, Kilo, Liberty, Mitaka, and Newton 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.
+ ... Icehouse, Juno, Kilo, Liberty, Mitaka, Newton, and Ocata 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.
'''
@@ -56,6 +56,7 @@ class ConsoleAPI(object):
'liberty': '2.0',
'mitaka': '2.0',
'newton': '2.0',
+ 'ocata': '2.0',
}
def __init__(self, topic=None, server=None):