You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix: retry 5 times + wait 45 sec for DAAC
* feat: make re-try configurable
* fix: retry on Temporary failure in name resolution
* chore: update version
* fix: add new test case for error
File "/usr/local/lib/python3.9/site-packages/urllib3/connection.py", line 174, in _new_conn
19
+
conn = connection.create_connection(
20
+
File "/usr/local/lib/python3.9/site-packages/urllib3/util/connection.py", line 72, in create_connection
21
+
for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
22
+
File "/usr/local/lib/python3.9/socket.py", line 954, in getaddrinfo
23
+
for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
24
+
socket.gaierror: [Errno -3] Temporary failure in name resolution
25
+
During handling of the above exception, another exception occurred:
26
+
Traceback (most recent call last):
27
+
File "/usr/local/lib/python3.9/site-packages/urllib3/connectionpool.py", line 714, in urlopen
28
+
httplib_response = self._make_request(
29
+
File "/usr/local/lib/python3.9/site-packages/urllib3/connectionpool.py", line 403, in _make_request
30
+
self._validate_conn(conn)
31
+
File "/usr/local/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1053, in _validate_conn
32
+
conn.connect()
33
+
File "/usr/local/lib/python3.9/site-packages/urllib3/connection.py", line 363, in connect
34
+
self.sock = conn = self._new_conn()
35
+
File "/usr/local/lib/python3.9/site-packages/urllib3/connection.py", line 186, in _new_conn
36
+
raise NewConnectionError(
37
+
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f111cbc54f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution
0 commit comments