diff --git a/ae5_tools/api.py b/ae5_tools/api.py index 50191b4..84132d5 100644 --- a/ae5_tools/api.py +++ b/ae5_tools/api.py @@ -526,7 +526,7 @@ def _api(self, method, endpoint, **kwargs): allow_retry = False while True: try: - response = getattr(self.session, method)(url, allow_redirects=False, timeout=1, **kwargs) + response = getattr(self.session, method)(url, allow_redirects=False, **kwargs) except requests.exceptions.ConnectionError: raise AEUnexpectedResponseError("Unable to connect", method, url, **kwargs) except requests.exceptions.Timeout: