summaryrefslogtreecommitdiff
path: root/novaclient/__init__.py
diff options
context:
space:
mode:
authorStephen Finucane <stephenfin@redhat.com>2021-01-12 17:18:56 +0000
committerStephen Finucane <stephenfin@redhat.com>2021-03-02 12:14:12 +0000
commit54d4da112a6e84db5bda497364a49b9debfc2904 (patch)
tree5f6624791c0c6fab0dbdf64e0727fbfb937ccd02 /novaclient/__init__.py
parente45953927898b639de9dbcba8edb6d07bcb4cba3 (diff)
downloadpython-novaclient-54d4da112a6e84db5bda497364a49b9debfc2904.tar.gz
Add support for microversion v2.8817.4.0
The key change here is that the 'GET /os-hypervisors/{id}/uptime' API will now returns a HTTP 404 starting in 2.88. The 'GET /os-hypervisors/{id}' will instead now include an 'uptime' value. The 'novaclient.v2.hypervisors.HypervisorManager.uptime' method is updated to handle this. Change-Id: Ib99fbd820a586c14527ff64b319df0b7a44e1b8b Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
Diffstat (limited to 'novaclient/__init__.py')
-rw-r--r--novaclient/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/novaclient/__init__.py b/novaclient/__init__.py
index 0b29e4f1..50ad89d8 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.87")
+API_MAX_VERSION = api_versions.APIVersion("2.88")