mirror of
https://github.com/rclone/rclone.git
synced 2026-05-16 12:45:55 -04:00
drime: fix uploads of 100..200M files
At some point Drime recommended 200M for the upload cutoff for switching to multipart upload. However uploads have stopped working using single part upload for 100..200Mish files. Their docs now recommend 5M as the cutoff for multipart upload so this changes the default.
This commit is contained in:
@@ -55,7 +55,7 @@ const (
|
||||
rootURL = baseURL + "api/v1"
|
||||
maxUploadParts = 10000 // maximum allowed number of parts in a multi-part upload
|
||||
minChunkSize = fs.SizeSuffix(1024 * 1024 * 5)
|
||||
defaultUploadCutoff = fs.SizeSuffix(200 * 1024 * 1024)
|
||||
defaultUploadCutoff = fs.SizeSuffix(5 * 1024 * 1024) // as per https://docs.drime.cloud/uploads-guide
|
||||
)
|
||||
|
||||
// Register with Fs
|
||||
|
||||
Reference in New Issue
Block a user