Unverified Commit 9fddef37 authored by Jeffrey Morgan's avatar Jeffrey Morgan Committed by GitHub
Browse files

server: limit upload parts to 16 (#6411)

parent d29cd4c2
...@@ -45,7 +45,7 @@ type blobUpload struct { ...@@ -45,7 +45,7 @@ type blobUpload struct {
} }
const ( const (
numUploadParts = 64 numUploadParts = 16
minUploadPartSize int64 = 100 * format.MegaByte minUploadPartSize int64 = 100 * format.MegaByte
maxUploadPartSize int64 = 1000 * format.MegaByte maxUploadPartSize int64 = 1000 * format.MegaByte
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment