Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add flag to enable MD5 checksum for S3 upload #790

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion s3/s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ type S3ClientOpts struct {
RoleSessionName string
UseSDKCreds bool
EncryptOpts EncryptOpts
SendContentMd5 bool
}

type s3client struct {
Expand Down Expand Up @@ -219,7 +220,7 @@ func (s *s3client) PutFile(bucket, key, path string) error {
return err
}

_, err = s.minioClient.FPutObject(s.ctx, bucket, key, path, minio.PutObjectOptions{ServerSideEncryption: encOpts})
_, err = s.minioClient.FPutObject(s.ctx, bucket, key, path, minio.PutObjectOptions{SendContentMd5: s.SendContentMd5, ServerSideEncryption: encOpts})
if err != nil {
return err
}
Expand Down
Loading