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
Disable body timeout for client-mode HTTP codec (#212)
Client connections carry SSE responses whose body is an open-ended
stream of events — quiet periods between events are expected and
valid. The 60s body timeout was firing on these, and the state
machine's executeTransition() then crashed on a still-live stream.
Set body_timeout to 0 (disabled) for client mode; keep 60s on server
mode where request bodies are expected to complete promptly.
0 commit comments