diff options
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): |