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
There is currently no wrapper for reqwest::Response. As a result, resp.body().await? call is not retried. In the case where the response is large, resp.body() call involves a lot of tcp socket listening and can potentially throw network errors
The text was updated successfully, but these errors were encountered:
From what I understand about this issue, you want to be able to retry the response body? As far as I'm aware, it's not possible to do so without making a full new request again.
This would require the Response to carry around the Client and Request structs with it. I'm not sure if I like that being a default behaviour.
There is currently no wrapper for reqwest::Response. As a result, resp.body().await? call is not retried. In the case where the response is large, resp.body() call involves a lot of tcp socket listening and can potentially throw network errors
The text was updated successfully, but these errors were encountered: