summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2018-10-02 15:51:52 +0000
committerGerrit Code Review <review@openstack.org>2018-10-02 15:51:52 +0000
commit59b2dd1124e74af38b4b4c660f16e3f646d22630 (patch)
treeba1f2f040a3a609dcb4b714a7b4b38b5c3bb8170
parent62dcf6aa18daadf912f6e65be8993f07ebb4fe7e (diff)
parentfefe331f218d73ba6d1d7acf81b5eb02609c953e (diff)
downloadpython-cinderclient-59b2dd1124e74af38b4b4c660f16e3f646d22630.tar.gz
Merge "Default help output to include MV updates"
-rw-r--r--cinderclient/shell.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/cinderclient/shell.py b/cinderclient/shell.py
index 8807b70..841748a 100644
--- a/cinderclient/shell.py
+++ b/cinderclient/shell.py
@@ -51,7 +51,6 @@ from cinderclient import utils
_i18n.enable_lazy()
-DEFAULT_MAJOR_OS_VOLUME_API_VERSION = "3"
DEFAULT_CINDER_ENDPOINT_TYPE = 'publicURL'
V1_SHELL = 'cinderclient.v1.shell'
V2_SHELL = 'cinderclient.v2.shell'
@@ -534,7 +533,7 @@ class OpenStackCinderShell(object):
if not options.os_volume_api_version:
api_version = api_versions.get_api_version(
- DEFAULT_MAJOR_OS_VOLUME_API_VERSION)
+ api_versions.MAX_VERSION)
else:
api_version = api_versions.get_api_version(
options.os_volume_api_version)