summaryrefslogtreecommitdiff
path: root/nova/console/rpcapi.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/console/rpcapi.py')
-rw-r--r--nova/console/rpcapi.py7
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):