I am using Python and Request module to retrieve all of records of a Test Execution by calling ZAPI Get Execution navigation result
Now, I have a Test Execution with 986 records. but I can’t get all records even when I take the following actions:
session = requests.Session()
session.mount("https://", HTTPAdapter(max_retries=3))
...
result = session.post(zurl, json = zqlFilterRequest, headers = headers, timeout = None)
and I always run into the following issue when I get about 300 records:
Expired at Mon Dec 04 00:30:51 PST 2017 and time is now Mon Dec 04 00:31:24 PST 2017 (30 seconds leeway is allowed)
Would anyone like to give me some helps or suggests?
Any helps would be appreciated
Thanks.