We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0ca9de0 + 9f91cf9 commit 3ebc192Copy full SHA for 3ebc192
pkg/leeway/cache/remote/s3.go
@@ -361,7 +361,9 @@ type S3Storage struct {
361
362
// NewS3Storage creates a new S3 storage implementation
363
func NewS3Storage(bucketName string, cfg *aws.Config) *S3Storage {
364
- client := s3.NewFromConfig(*cfg)
+ client := s3.NewFromConfig(*cfg, func(o *s3.Options) {
365
+ o.DisableLogOutputChecksumValidationSkipped = true
366
+ })
367
return &S3Storage{
368
client: client,
369
bucketName: bucketName,
0 commit comments