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
running server with both --nothread and --noreload options to keep it simple.
When too many consequent requests, last request freeze at point: self._sslobj.write(data)
That is from Python's ssl.py.
Closing the browser doesn't let it go and if I use Firefox instead, it waits about 3 seconds and resolves the freeze at the server side.
Unfortunately, I can not reproduce with exact steps, it appears only when I reload the page every second. To keep going, I have to stop and run the server again.
The text was updated successfully, but these errors were encountered:
Hi,
Even i'm facing this issue. Once in a while server hangs. In this state i see that the socket is stuck in ESTABLISHED state and the connection doesn't break and only way to recover is to restart the server.
As a preventive method, is there any way to set timeout in django-sslserver?
Versions:
running server with both
--nothread
and--noreload
options to keep it simple.When too many consequent requests, last request freeze at point:
self._sslobj.write(data)
That is from Python's
ssl.py
.Closing the browser doesn't let it go and if I use Firefox instead, it waits about 3 seconds and resolves the freeze at the server side.
Unfortunately, I can not reproduce with exact steps, it appears only when I reload the page every second. To keep going, I have to stop and run the server again.
The text was updated successfully, but these errors were encountered: