georgruetsche

Results 1 comments of georgruetsche

Maybe try annother code part like: import requests from requests.adapters import HTTPAdapter from urllib3.util.retry import Retry retry_strategy = Retry( total=5, backoff_factor=0.1, status_forcelist=[500, 502, 503, 504], method_whitelist=["GET"], ) adapter = HTTPAdapter(max_retries=retry_strategy)...