Skip to content
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