Merge "[microversions] Increase max version to 2.12"
This commit is contained in:
commit
aa2687b3f7
@ -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.11")
|
||||
API_MAX_VERSION = api_versions.APIVersion("2.12")
|
||||
|
@ -2552,6 +2552,8 @@ class ShellTest(utils.TestCase):
|
||||
5, # Not implemented when test added, should not apply to adds.
|
||||
7, # doesn't require any changes in novaclient
|
||||
9, # doesn't require any changes in novaclient
|
||||
# TODO(andreykurilin): remove 12 when 1522424 will be resolved
|
||||
12, # doesn't require any changes in novaclient
|
||||
])
|
||||
versions_supported = set(range(0,
|
||||
novaclient.API_MAX_VERSION.ver_minor + 1))
|
||||
|
@ -22,7 +22,7 @@ from novaclient import base
|
||||
|
||||
class VirtualInterface(base.Resource):
|
||||
def __repr__(self):
|
||||
pass
|
||||
return "<VirtualInterface>"
|
||||
|
||||
|
||||
class VirtualInterfaceManager(base.ManagerWithFind):
|
||||
|
Loading…
Reference in New Issue
Block a user