Notice
Recent Posts
Recent Comments
Link
«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
Tags
more
Archives
Today
Total
관리 메뉴

금융을 따라 흐르는 블로그

(Error) ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response',)) 본문

카테고리 없음

(Error) ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response',))

DeNarO 2021. 2. 11. 21:47

This could be a downstream timeout problem from the API, but it could be we have a timeout setting on the http client on the python side.

API문제 >>> timeout setting on the http client

 

Sentry Issue: VIRINGO-1J

RemoteDisconnected: Remote end closed connection without response (2 additional frame(s) were not displayed) ...

File "<string>", line 3, in raise_from # Permission is hereby granted, free of charge, to any person obtaining a copy File "urllib3/connectionpool.py", line 416, in _make_request httplib_response = conn.getresponse() File "http/client.py", line 1346, in getresponse response.begin() File "http/client.py", line 307, in begin version, status, reason = self._read_status() File

 

"http/client.py", line 276, in _read_status raise RemoteDisconnected("Remote end closed connection without" ProtocolError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response',)) (6 additional frame(s) were not displayed) ...

File "<string>", line 3, in raise_from # Permission is hereby granted, free of charge, to any person obtaining a copy File "urllib3/connectionpool.py", line 416, in _make_request httplib_response = conn.getresponse() File "http/client.py", line 1346, in getresponse response.begin() File "http/client.py", line 307, in begin version, status, reason = self._read_status() File "http/client.py", line 276, in _read_status raise RemoteDisconnected("Remote end closed connection without"

 

ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response',)) (20 additional frame(s) were not displayed) ...

File "requests/api.py", line 75, in get return request('get', url, params=params, **kwargs) File "requests/api.py", line 60, in request return session.request(method=method, url=url, **kwargs) File "requests/sessions.py", line 533, in request resp = self.send(prep, **send_kwargs) File "requests/sessions.py", line 646, in send r = adapter.send(request, **kwargs) File "requests/adapters.py", line 498, in send raise ConnectionError(err, request=request)