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
The reqwest::Client is built with defaults — no connect timeout, no read timeout. A stalled server will hang the download indefinitely. Configure sensible timeouts (e.g. 10s connect, 30s read) on the client builder.
The
reqwest::Clientis built with defaults — no connect timeout, no read timeout. A stalled server will hang the download indefinitely. Configure sensible timeouts (e.g. 10s connect, 30s read) on the client builder.