summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-08-03 21:43:48 +0000
committerGerrit Code Review <review@openstack.org>2015-08-03 21:43:48 +0000
commit5fd80344cb8d84ac4bdff37177494c6d8afde89e (patch)
tree38912b4204f49c583e769fe9cc8d8a46a1edb59c
parent22236fd763ed8d240b254ed54f892fb6fc0f454a (diff)
parentfb28e1a2b80c21ff6a9728654b4d736add810ae1 (diff)
downloadpython-keystoneclient-5fd80344cb8d84ac4bdff37177494c6d8afde89e.tar.gz
Merge "Proper deprecation for Dicover.raw_version_data unstable parameter"
-rw-r--r--keystoneclient/_discover.py3
-rw-r--r--keystoneclient/discover.py10
2 files changed, 11 insertions, 2 deletions
diff --git a/keystoneclient/_discover.py b/keystoneclient/_discover.py
index 07d0ae6..8d6889d 100644
--- a/keystoneclient/_discover.py
+++ b/keystoneclient/_discover.py
@@ -195,6 +195,9 @@ class Discover(object):
:raw_status str: The status as provided by the server
:rtype: list(dict)
"""
+ if kwargs.pop('unstable', None):
+ kwargs.setdefault('allow_experimental', True)
+ kwargs.setdefault('allow_unknown', True)
data = self.raw_version_data(**kwargs)
versions = []
diff --git a/keystoneclient/discover.py b/keystoneclient/discover.py
index 6ead962..ff0db6d 100644
--- a/keystoneclient/discover.py
+++ b/keystoneclient/discover.py
@@ -191,6 +191,10 @@ class Discover(_discover.Discover):
"""
return self.raw_version_data(**kwargs)
+ @removals.removed_kwarg(
+ 'unstable',
+ message='Use allow_experimental and allow_unknown instead.',
+ version='1.7.0', removal_version='2.0.0')
def raw_version_data(self, unstable=False, **kwargs):
"""Get raw version information from URL.
@@ -198,8 +202,10 @@ class Discover(_discover.Discover):
on the data, so what is returned here will be the data in the same
format it was received from the endpoint.
- :param bool unstable: (deprecated) equates to setting
- allow_experimental and allow_unknown.
+ :param bool unstable: equates to setting allow_experimental and
+ allow_unknown. This argument is deprecated as of
+ the 1.7.0 release and may be removed in the 2.0.0
+ release.
:param bool allow_experimental: Allow experimental version endpoints.
:param bool allow_deprecated: Allow deprecated version endpoints.
:param bool allow_unknown: Allow endpoints with an unrecognised status.