From bf21cfff43cd41fd00b1346854313e5dece31ba7 Mon Sep 17 00:00:00 2001 From: whoami-rajat Date: Tue, 13 Nov 2018 12:45:10 +0530 Subject: [PATCH] doc: Change variable name DEFAULT_API_VERSION to _MIN_API_VERSION The DEFAULT_API_VERSION variable doesn't exist in the specified file. As stated in [1], _MIN_API_VERSION is used as the default api version if no version is specified. [1] https://github.com/openstack/cinder/blob/master/cinder/api/openstack/api_version_request.py#L133-L136 Change-Id: I6ecd0b2993c00c3abea98afc5be63bc8dc78624e --- doc/source/contributor/api_microversion_dev.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/contributor/api_microversion_dev.rst b/doc/source/contributor/api_microversion_dev.rst index 13dbc4a737a..c9666ed1b80 100644 --- a/doc/source/contributor/api_microversion_dev.rst +++ b/doc/source/contributor/api_microversion_dev.rst @@ -20,7 +20,7 @@ word ``volume``:: OpenStack-API-Version: volume 3.0 If a user makes a request without specifying a version, they will get -the ``DEFAULT_API_VERSION`` as defined in +the ``_MIN_API_VERSION`` as defined in ``cinder/api/openstack/api_version_request.py``. This value is currently ``3.0`` and is expected to remain so for quite a long time.