s3: remove verbose debug about invalid md5sums for multipart upload
This commit is contained in:
parent
83733205f6
commit
337110b7a0
1 changed files with 1 additions and 1 deletions
2
s3/s3.go
2
s3/s3.go
|
@ -502,7 +502,7 @@ func (o *FsObjectS3) Md5sum() (string, error) {
|
|||
etag := strings.Trim(strings.ToLower(o.etag), `"`)
|
||||
// Check the etag is a valid md5sum
|
||||
if !matchMd5.MatchString(etag) {
|
||||
fs.Debug(o, "Invalid md5sum (probably multipart uploaded) - ignoring: %q", etag)
|
||||
// fs.Debug(o, "Invalid md5sum (probably multipart uploaded) - ignoring: %q", etag)
|
||||
return "", nil
|
||||
}
|
||||
return etag, nil
|
||||
|
|
Loading…
Reference in a new issue