1 Commits

Author SHA1 Message Date
jar3b@outlook.com
ca5a582074 fix: add body close call 2021-10-07 22:24:57 +03:00

View File

@@ -12,6 +12,7 @@ func (r *Request) FromHTTP(req *http.Request) error {
return errors.New("nats_transport: request cannot be nil")
}
defer req.Body.Close()
buf, err := ioutil.ReadAll(req.Body)
if err != nil {
return fmt.Errorf("nats_transport: cannot read request body")