diff options
| author | 2026-05-02 22:56:17 +0700 | |
|---|---|---|
| committer | 2026-05-02 22:56:17 +0700 | |
| commit | 5ad79c87f89d782a6389e72f6273699d432f143b (patch) | |
| tree | 4529686ff01e28e5d82ab8782fcb28405e0b22b7 /internal | |
| parent | 78d6b00cd973e4254ea13cbb17bb35a30fef51b9 (diff) | |
| download | web-5ad79c87f89d782a6389e72f6273699d432f143b.tar.gz web-5ad79c87f89d782a6389e72f6273699d432f143b.zip | |
fix: disable checksum validation skipped spam
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/blog/s3.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/blog/s3.go b/internal/blog/s3.go index 06630ef..bbd5238 100644 --- a/internal/blog/s3.go +++ b/internal/blog/s3.go @@ -58,6 +58,7 @@ func NewS3Client(cfg *config.StorageConfig) (Client, error) { } s3Opts = append(s3Opts, func(o *s3.Options) { o.UsePathStyle = s3cfg.UsePathStyle + o.DisableLogOutputChecksumValidationSkipped = true }) s3cl := s3.NewFromConfig(awsCfg, s3Opts...) |