summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFederico Ceratto <federico.ceratto@gmail.com>2015-07-02 15:59:39 +0100
committerFederico Ceratto <federico.ceratto@hp.com>2015-08-11 18:36:56 +0200
commit2ec96b6672a9282a0dd12980bd7ce50b58da6d42 (patch)
treef3e07e6672059fafa75ef42d1672155bc650fb83 /doc
parentf9e41ea81ecc1e1f0dd20f0f6b77ce3f017be350 (diff)
downloadpython-designateclient-2ec96b6672a9282a0dd12980bd7ce50b58da6d42.tar.gz
Implement socket timeout in v1
Add endpoint_override keyword to v2.Client() and check for the session argument in DesignateAdapter() Add unit test, fix minor typos Change-Id: I038ec7b0d1feadc9642bd47285e397b3fe84c13c Closes-Bug: 1469739
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/zone_list_paging.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/zone_list_paging.py b/doc/examples/zone_list_paging.py
index 47aba29..ca8ab3a 100644
--- a/doc/examples/zone_list_paging.py
+++ b/doc/examples/zone_list_paging.py
@@ -14,7 +14,7 @@ auth = generic.Password(
password=shell.env('OS_PASSWORD'),
tenant_name=shell.env('OS_TENANT_NAME'))
-session = keystone_session.Session(auth=auth)
+session = keystone_session.Session(auth=auth, timeout=10)
client = client.Client(session=session)