mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
report error only for the first multipart upload
the glog.Errorf would always print for s3 multipart uploads
This commit is contained in:
parent
76c48ffe27
commit
3eb336e0b0
|
@ -74,7 +74,7 @@ func (fs *FilerServer) uploadReaderToChunks(w http.ResponseWriter, r *http.Reque
|
|||
}
|
||||
uploadedMd5 := util.Base64Md5ToBytes(uploadResult.ContentMd5)
|
||||
readedMd5 := md5Hash.Sum(nil)
|
||||
if !bytes.Equal(uploadedMd5, readedMd5) {
|
||||
if !bytes.Equal(uploadedMd5, readedMd5) && chunkOffset == 0 {
|
||||
glog.Errorf("md5 %x does not match %x uploaded chunk %s to the volume server", readedMd5, uploadedMd5, uploadResult.Name)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue