From cf4d21554467112a1e2aa01e868acab93229716d Mon Sep 17 00:00:00 2001 From: "Jay S. Bryant" Date: Tue, 23 Jan 2018 10:36:00 -0600 Subject: [PATCH] Bump API microversion to 3.50 This change is to bump MAX_VERSION to 3.50 in api_version. This bump is necessary to keep cinderclient in sync with cinder which moved to 3.50 with change: f1bfd9790d2a7cac9a3e66417b11dc8e3edd8109 With MV 3.50 we are able to request multiple attachments for a single volume. Change-Id: Ic51b890b816112cecaedd68df8d13ec175623c66 --- cinderclient/api_versions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinderclient/api_versions.py b/cinderclient/api_versions.py index 796e069e2..1dad7945d 100644 --- a/cinderclient/api_versions.py +++ b/cinderclient/api_versions.py @@ -29,7 +29,7 @@ LOG = logging.getLogger(__name__) # key is a deprecated version and value is an alternative version. DEPRECATED_VERSIONS = {"1": "2"} DEPRECATED_VERSION = "2.0" -MAX_VERSION = "3.49" +MAX_VERSION = "3.50" MIN_VERSION = "3.0" _SUBSTITUTIONS = {}