Skip to content

Commit 3ebc192

Browse files
authored
Merge pull request #213 from gitpod-io/aledbf/warning
Disable S3 checksum warning
2 parents 0ca9de0 + 9f91cf9 commit 3ebc192

File tree

1 file changed

+3
-1
lines changed
  • pkg/leeway/cache/remote

1 file changed

+3
-1
lines changed

pkg/leeway/cache/remote/s3.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,9 @@ type S3Storage struct {
361361

362362
// NewS3Storage creates a new S3 storage implementation
363363
func NewS3Storage(bucketName string, cfg *aws.Config) *S3Storage {
364-
client := s3.NewFromConfig(*cfg)
364+
client := s3.NewFromConfig(*cfg, func(o *s3.Options) {
365+
o.DisableLogOutputChecksumValidationSkipped = true
366+
})
365367
return &S3Storage{
366368
client: client,
367369
bucketName: bucketName,

0 commit comments

Comments
 (0)