server: limit upload parts to 16 (#6411)

This commit is contained in:
Jeffrey Morgan
2024-08-19 09:20:52 -07:00
committed by GitHub
parent d29cd4c2ed
commit 9fddef3731

View File

@@ -45,7 +45,7 @@ type blobUpload struct {
}
const (
numUploadParts = 64
numUploadParts = 16
minUploadPartSize int64 = 100 * format.MegaByte
maxUploadPartSize int64 = 1000 * format.MegaByte
)