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
Some user report seeing this error message. I suspect it's caused by this line of code because req.Body is not "rewindable ". According to documented in Go’s NewRequestWithContext function doc, for the request to be rewindable it should be type of *bytes.Buffer, *bytes.Reader, or *strings.Reader (Rewindable means GetBody function is defined for the request object.
The text was updated successfully, but these errors were encountered:
Some user report seeing this error message. I suspect it's caused by this line of code because
req.Body
is not "rewindable ". According to documented in Go’s NewRequestWithContext function doc, for the request to be rewindable it should be type of*bytes.Buffer
,*bytes.Reader
, or*strings.Reader
(Rewindable meansGetBody
function is defined for the request object.The text was updated successfully, but these errors were encountered: