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
http.client: bound the number of chunked trailer lines read
A server could stream syntactically valid trailer lines forever after
the final chunk of a chunked response, so reading the response would
never return. Socket timeouts cannot interrupt this because data
keeps arriving within every timeout window. Trailer lines are now
counted against the same limit as response headers (100 by default)
and HTTPException is raised when the limit is exceeded.
(cherry picked from commit 752bef5047e54e21af0e48a339b54fbae2a6c831)
0 commit comments