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 issue is in bodyWriter.ReadFrom (line 49): when w.body != nil, it calls io.Copy(w, r), which detects that w implements io.ReaderFrom and calls ReadFrom again, causing infinite recursion.
The issue is in bodyWriter.ReadFrom (line 49): when w.body != nil, it calls io.Copy(w, r), which detects that w implements io.ReaderFrom and calls ReadFrom again, causing infinite recursion.