cleanup: xtransport: simplify body creation

This commit is contained in:
Markus Linnala 2019-10-16 13:20:40 +03:00 committed by Frank Denis
parent 345ec56cab
commit a941cbd893

View file

@ -223,8 +223,7 @@ func (xTransport *XTransport) Fetch(method string, url *url.URL, accept string,
} }
if body != nil { if body != nil {
req.ContentLength = int64(len(*body)) req.ContentLength = int64(len(*body))
bc := ioutil.NopCloser(bytes.NewReader(*body)) req.Body = ioutil.NopCloser(bytes.NewReader(*body))
req.Body = bc
} }
var err error var err error
resolveByProxy := false resolveByProxy := false