Skip to content

Commit

Permalink
add flag to enable MD5 checksum for S3 upload (#790)
Browse files Browse the repository at this point in the history
Signed-off-by: Alec Kloss <[email protected]>
  • Loading branch information
akloss-cibo authored Jan 23, 2025
1 parent 384bf2f commit 65f2d47
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 65f2d47

Please sign in to comment.