RHEL requires the source code for dependencies to be included in the srpm. The spec file already expects that, but we've only included the vendored modules (i.e., the `vendor` directory) in the `rhel-8.2.` branch. Move vendoring to master, so that we can build RHEL packages from it as well. This commit is the result of running `go mod vendor`, which includes the vendored sources and updates go.mod and go.sum files. Fedora requires the opposite: dependencies should not be vendored. The spec file already ignores the `vendor` directory by default.
21 lines
596 B
Go
21 lines
596 B
Go
package protocol
|
|
|
|
import (
|
|
"io"
|
|
"io/ioutil"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/request"
|
|
)
|
|
|
|
// UnmarshalDiscardBodyHandler is a named request handler to empty and close a response's body
|
|
var UnmarshalDiscardBodyHandler = request.NamedHandler{Name: "awssdk.shared.UnmarshalDiscardBody", Fn: UnmarshalDiscardBody}
|
|
|
|
// UnmarshalDiscardBody is a request handler to empty a response's body and closing it.
|
|
func UnmarshalDiscardBody(r *request.Request) {
|
|
if r.HTTPResponse == nil || r.HTTPResponse.Body == nil {
|
|
return
|
|
}
|
|
|
|
io.Copy(ioutil.Discard, r.HTTPResponse.Body)
|
|
r.HTTPResponse.Body.Close()
|
|
}
|