diff options
author | Jenkins <jenkins@review.openstack.org> | 2015-04-27 13:17:34 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2015-04-27 13:17:34 +0000 |
commit | e29785daede6897449f7c927454f90290f75e736 (patch) | |
tree | d357f48c9febd7bd2657b1a982cd773b2c574ccc /nova/console | |
parent | 4eb0f17e6347a76f0ffc6757c291e1dd56cf393b (diff) | |
parent | 78a8b5802ca148dcf37c5651f75f2126d261266e (diff) | |
download | nova-e29785daede6897449f7c927454f90290f75e736.tar.gz |
Merge "Update rpc version aliases for kilo"
Diffstat (limited to 'nova/console')
-rw-r--r-- | nova/console/rpcapi.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/nova/console/rpcapi.py b/nova/console/rpcapi.py index 5632e77a19..c3b08c236d 100644 --- a/nova/console/rpcapi.py +++ b/nova/console/rpcapi.py @@ -49,9 +49,9 @@ class ConsoleAPI(object): 2.0 - Major API rev for Icehouse - ... 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. + ... Icehouse, Juno and Kilo 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. ''' VERSION_ALIASES = { @@ -59,6 +59,7 @@ class ConsoleAPI(object): 'havana': '1.1', 'icehouse': '2.0', 'juno': '2.0', + 'kilo': '2.0', } def __init__(self, topic=None, server=None): |