summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzhangbailin <zhangbailin@inspur.com>2020-03-24 11:10:29 +0800
committerBrin Zhang <zhangbailin@inspur.com>2020-04-08 04:10:35 +0000
commitd712c0fbc7a320f6eea4f8741f2f8d6e517a6507 (patch)
treeabb7161984e3acc3dfa9beb851df58f984a8831d
parent9ee74d3ac6d26018d0161e24fe8c0f3f29b21c06 (diff)
downloadpython-novaclient-d712c0fbc7a320f6eea4f8741f2f8d6e517a6507.tar.gz
Microversion 2.84 - action event fault details
This patch adds support for microversion 2.84 "Expose instance action event details out of the API" [1]. [1] https://review.opendev.org/#/c/694430/ No changes are required in the novaclient side, so just increment the microversion. Depends-On: https://review.opendev.org/#/c/694430/ Implements blueprint action-event-fault-details Change-Id: I1d71284de9a5f25f4554dd2ec7291d5706381de7
-rw-r--r--novaclient/__init__.py2
-rw-r--r--novaclient/tests/unit/v2/test_shell.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/novaclient/__init__.py b/novaclient/__init__.py
index f86d680f..adcb85dd 100644
--- a/novaclient/__init__.py
+++ b/novaclient/__init__.py
@@ -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.83")
+API_MAX_VERSION = api_versions.APIVersion("2.84")
diff --git a/novaclient/tests/unit/v2/test_shell.py b/novaclient/tests/unit/v2/test_shell.py
index c8d3dc9b..f00f583e 100644
--- a/novaclient/tests/unit/v2/test_shell.py
+++ b/novaclient/tests/unit/v2/test_shell.py
@@ -4505,6 +4505,7 @@ class ShellTest(utils.TestCase):
77, # There are no version-wrapped shell method changes for this.
82, # There are no version-wrapped shell method changes for this.
83, # There are no version-wrapped shell method changes for this.
+ 84, # There are no version-wrapped shell method changes for this.
])
versions_supported = set(range(0,
novaclient.API_MAX_VERSION.ver_minor + 1))