diff options
author | Samuel Merritt <spam@andcheese.org> | 2013-07-12 17:26:45 -0700 |
---|---|---|
committer | Samuel Merritt <spam@andcheese.org> | 2013-07-12 17:26:45 -0700 |
commit | 07d13b5262f014bbfceacef0c0622bf156025aac (patch) | |
tree | c161d09adf196acebbfb633a750ba56e4cc4c646 | |
parent | cc2fbf0c7435729c89d4b4f27cb7411a7a1cfe61 (diff) | |
download | python-swiftclient-07d13b5262f014bbfceacef0c0622bf156025aac.tar.gz |
Update docstring for swiftclient.Connection.__init__
There were two undocumented parameters in there, one introduced
recently in 6411fd3, and the other some time before.
Change-Id: I3a7d59e1c272b382b035b88ba5495bc1c57a3154
-rw-r--r-- | swiftclient/client.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/swiftclient/client.py b/swiftclient/client.py index 0a32033..7791a4c 100644 --- a/swiftclient/client.py +++ b/swiftclient/client.py @@ -1057,6 +1057,8 @@ class Connection(object): authenticated) note authurl/user/key/tenant_name are not required when specifying preauthtoken :param snet: use SERVICENET internal network default is False + :param starting_backoff: initial delay between retries (seconds) + :param max_backoff: maximum delay between retries (seconds) :param auth_version: OpenStack auth version, default is 1.0 :param tenant_name: The tenant/account name, required when connecting to a auth 2.0 system. |