summaryrefslogtreecommitdiff
path: root/keystoneclient/client.py
diff options
context:
space:
mode:
authorDan Prince <dprince@redhat.com>2012-12-06 15:26:46 -0500
committerDan Prince <dprince@redhat.com>2012-12-06 15:37:50 -0500
commit93d243147e03777b03b0910c1b3921e2f9f61eae (patch)
tree34cbf1912b008e3ceacc6e410122affddc5c7f4a /keystoneclient/client.py
parent1bff1909df68df07f9d47d8905ca5a1539790bfa (diff)
downloadpython-keystoneclient-93d243147e03777b03b0910c1b3921e2f9f61eae.tar.gz
Make use_keyring False by default.
Updates the use_keyring option for the Keystone Client class to default to False by default. This provides for a much easier upgrade path the the most recent keystone-client code and is backwards compatible with the previous release. This does not change the default of the no_cache keystone CLI which will still enable use_keyring by default. Fixes LP Bug #1087434. Change-Id: Iaafadde660b0542a9c0a9c1bb742cb369b523a68
Diffstat (limited to 'keystoneclient/client.py')
-rw-r--r--keystoneclient/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystoneclient/client.py b/keystoneclient/client.py
index e3bd623..b6fd54c 100644
--- a/keystoneclient/client.py
+++ b/keystoneclient/client.py
@@ -50,7 +50,7 @@ class HTTPClient(httplib2.Http):
password=None, auth_url=None, region_name=None, timeout=None,
endpoint=None, token=None, cacert=None, key=None,
cert=None, insecure=False, original_ip=None, debug=False,
- auth_ref=None, use_keyring=True, force_new_token=False,
+ auth_ref=None, use_keyring=False, force_new_token=False,
stale_duration=None):
super(HTTPClient, self).__init__(timeout=timeout, ca_certs=cacert)
if cert: