We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09c50a8 commit 88b38ffCopy full SHA for 88b38ff
plugin/storage/s3/s3.go
@@ -32,6 +32,8 @@ func NewClient(ctx context.Context, s3Config *storepb.StorageS3Config) (*Client,
32
client := s3.NewFromConfig(cfg, func(o *s3.Options) {
33
o.BaseEndpoint = aws.String(s3Config.Endpoint)
34
o.UsePathStyle = s3Config.UsePathStyle
35
+ o.RequestChecksumCalculation = aws.RequestChecksumCalculationWhenRequired
36
+ o.ResponseChecksumValidation = aws.ResponseChecksumValidationWhenRequired
37
})
38
return &Client{
39
Client: client,
0 commit comments