Browse Source

weed/operation: fix dropped error (#4888)

pull/4896/head
Lars Lehtonen 1 year ago
committed by GitHub
parent
commit
530bdedf76
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      weed/operation/upload_content.go

3
weed/operation/upload_content.go

@ -188,6 +188,9 @@ func doUploadData(data []byte, option *UploadOption) (uploadResult *UploadResult
} else if !iAmSure && option.MimeType == "" && len(data) > 16*1024 {
var compressed []byte
compressed, err = util.GzipData(data[0:128])
if err != nil {
return
}
shouldGzipNow = len(compressed)*10 < 128*9 // can not compress to less than 90%
}
}

Loading…
Cancel
Save