We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9cf5375 + ccf4af8 commit 3271fc7Copy full SHA for 3271fc7
cache/remotecache/s3/s3.go
@@ -404,7 +404,10 @@ type s3Client struct {
404
}
405
406
func newS3Client(ctx context.Context, config Config) (*s3Client, error) {
407
- cfg, err := aws_config.LoadDefaultConfig(ctx, aws_config.WithRegion(config.Region))
+ cfg, err := aws_config.LoadDefaultConfig(ctx,
408
+ aws_config.WithRegion(config.Region),
409
+ aws_config.WithRequestChecksumCalculation(aws.RequestChecksumCalculationWhenRequired),
410
+ )
411
if err != nil {
412
return nil, errors.Errorf("Unable to load AWS SDK config, %v", err)
413
0 commit comments