go-resty / resty

Simple HTTP and REST client library for Go
MIT License
10.01k stars 706 forks source link

Remove SetContentLength for io.Reader request flow #878

Closed jeevatkm closed 1 week ago

jeevatkm commented 1 week ago

Currently, Client.SetContentLength or Request.SetContentLength causes the io.Reader content to be loaded into memory before firing the request.

Make io.Reader on Request.SetBody is streaming only.