summaryrefslogtreecommitdiff
path: root/nova/consoleauth
diff options
context:
space:
mode:
authorRussell Bryant <rbryant@redhat.com>2014-10-03 16:41:03 -0400
committerRussell Bryant <rbryant@redhat.com>2014-10-03 16:41:03 -0400
commitf98d725103c53e767a1cddb0b7e2c3822309db17 (patch)
tree5b83153eaa9aa27f43cc30df3ea34598af5966c7 /nova/consoleauth
parent05a564dc8071d9cc928129e245cb4f1e57601ebb (diff)
downloadnova-f98d725103c53e767a1cddb0b7e2c3822309db17.tar.gz
Update rpc version aliases for juno
Update all of the rpc client API classes to include a version alias for the latest version implemented in Juno. This alias is needed when doing rolling upgrades from Juno to Kilo. With this in place, you can ensure all services only send messages that both Juno and Kilo will understand. Change-Id: Ia81538130bf8530b70b5f55c7a3d565903ff54b4
Diffstat (limited to 'nova/consoleauth')
-rw-r--r--nova/consoleauth/rpcapi.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/consoleauth/rpcapi.py b/nova/consoleauth/rpcapi.py
index 2bba0f8c96..aa1d6447c1 100644
--- a/nova/consoleauth/rpcapi.py
+++ b/nova/consoleauth/rpcapi.py
@@ -44,7 +44,7 @@ class ConsoleAuthAPI(object):
* 2.0 - Major API rev for Icehouse
- ... Icehouse supports message version 2.0. So, any changes to
+ ... Icehouse and Juno 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.
'''
@@ -53,6 +53,7 @@ class ConsoleAuthAPI(object):
'grizzly': '1.2',
'havana': '1.2',
'icehouse': '2.0',
+ 'juno': '2.0',
}
def __init__(self):