diff options
| author | 2026-05-04 00:16:35 +0700 | |
|---|---|---|
| committer | 2026-05-04 00:16:35 +0700 | |
| commit | acabbb29c4a1397e39e0b996c69dacbb4d3dea50 (patch) | |
| tree | 34f7de66d113cc55e7b39ca9605d4ad30919ef7c /internal/client/input/s3.go | |
| parent | 0bcb1538ce1d8a98cdf24df3bc7f54d56f33e2a5 (diff) | |
| download | thumbnail-generator-main.tar.gz thumbnail-generator-main.zip | |
fix: lock the cache map mutex before checking itmain
feat: disable log output checksum validation skipped spam
Diffstat (limited to 'internal/client/input/s3.go')
| -rw-r--r-- | internal/client/input/s3.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/client/input/s3.go b/internal/client/input/s3.go index 4f84788..00684c2 100644 --- a/internal/client/input/s3.go +++ b/internal/client/input/s3.go @@ -150,6 +150,7 @@ func newS3Client(cfg *config.S3Config) (*s3.Client, error) { } s3Opts = append(s3Opts, func(o *s3.Options) { o.UsePathStyle = cfg.UsePathStyle + o.DisableLogOutputChecksumValidationSkipped = true }) return s3.NewFromConfig(awsCfg, s3Opts...), nil |