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.
1 parent c1036c6 commit 9f91cf9Copy full SHA for 9f91cf9
pkg/leeway/cache/remote/s3.go
@@ -360,7 +360,9 @@ type S3Storage struct {
360
361
// NewS3Storage creates a new S3 storage implementation
362
func NewS3Storage(bucketName string, cfg *aws.Config) *S3Storage {
363
- client := s3.NewFromConfig(*cfg)
+ client := s3.NewFromConfig(*cfg, func(o *s3.Options) {
364
+ o.DisableLogOutputChecksumValidationSkipped = true
365
+ })
366
return &S3Storage{
367
client: client,
368
bucketName: bucketName,
0 commit comments