Debugging Keep Alives - Why is HttpToolsProtocol.connection_lost
always called after each request?
#2131
-
I was trying to reproduce an intermittent 503 issue (from the reverse proxy) and my guess was because my reverse proxy's idle timeout is much higher than what uvicorn's default is there must be some race condition severing the connection. requirements.txt
app.py
command
and when I hit with curl
From curl side connection is left intact, but from server side I notice connection is never closed?
The So how can connections be kept alive correctly? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Nevermind,
And then I realised I was using curl wrong. Two different curl processes cannot use the same connection (Duh!). The correct way is to use
|
Beta Was this translation helpful? Give feedback.
Nevermind,
I tried
requests.Session
and keep alive behaves as expected and server logs also don't have immediate connection_lost.