Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
Open
Description
Bug report
Bug description:
I was running a script (in Jupyter/IPython/VSCode Interactive) that uses therequests
library to download data. System hibernated and then woke up. After waking up, the download call stuck for hours. I've used the Austin profiler to get the stack trace. It looks like the code is stuck inSSLSocket.read
.
The process has been stuck for several hours. There is unsaved variable data that I really don't want to lose.
My expectation is thatSSLSocket.read
should not get stuck for hours without error.
Is there any additional debug information I should collect in such cases?
c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\site-packages\requests\sessions.py:Session.get:600c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\site-packages\requests\sessions.py:Session.request:587c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\site-packages\requests\sessions.py:Session.send:745c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\site-packages\requests\models.py:Response.content:899c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\site-packages\requests\models.py:Response.iter_content.<locals>.generate:816c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\site-packages\urllib3\response.py:HTTPResponse.stream:628c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\site-packages\urllib3\response.py:HTTPResponse.read:567c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\site-packages\urllib3\response.py:HTTPResponse._fp_read:533c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\http\client.py:HTTPResponse.read:465c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\socket.py:SocketIO.readinto:706c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\ssl.py:SSLSocket.recv_into:1278c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\ssl.py:SSLSocket.read:1134 161
CPython versions tested on:
3.11
Operating systems tested on:
Windows