misha778
Results
2
comments of
misha778
Thank you! it's a pity that doesn't help for requests, it doesn't seem to be using the poolmanager urlopen method.
with a timeout error, retry is working fine ``` retry = Retry(total=10) http = urllib3.PoolManager(retries=retry, timeout=2) r = http.request("GET", "https://httpbin.org/delay/5") ```