Added support for microversion 2.34

microversion support added

Change-Id: I5743ad049c413e3ebe3ef816ee1ad2c26cc5cc2d
bp: async-live-migration-rest-check
Depends-On: #I9fed3079d0f1b7de3ad1b3ecd309c93785fd11fe
This commit is contained in:
Timofey Durakov 2016-07-04 12:15:12 +03:00
parent 22beb3b4ea
commit e78cc20514
3 changed files with 5 additions and 1 deletions

View File

@ -25,4 +25,4 @@ API_MIN_VERSION = api_versions.APIVersion("2.1")
# when client supported the max version, and bumped sequentially, otherwise
# the client may break due to server side new version may include some
# backward incompatible change.
API_MAX_VERSION = api_versions.APIVersion("2.33")
API_MAX_VERSION = api_versions.APIVersion("2.34")

View File

@ -2929,6 +2929,7 @@ class ShellTest(utils.TestCase):
31, # doesn't require any changes in novaclient
32, # doesn't require separate version-wrapped methods in
# novaclient
34, # doesn't require any changes in novaclient
])
versions_supported = set(range(0,
novaclient.API_MAX_VERSION.ver_minor + 1))

View File

@ -0,0 +1,3 @@
---
upgrade:
- Support for microversion 2.34 added.