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 29fc55f + 8a34dcd commit be1f38eCopy full SHA for be1f38e
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