qingstor: default --qingstor-upload-concurrency to 1 to work around bug

If the upload concurrency is set > 1 then the hash becomes corrupted.
The upload is fine, and can be downloaded fine, however the hash is no
longer the md5sum of the object.  It is not known whether this is
rclone's fault or a bug at QingStor.
This commit is contained in:
Nick Craig-Wood 2019-01-27 21:09:11 +00:00
parent 184a9c8da6
commit 6a832b7173
1 changed files with 4 additions and 1 deletions

View File

@ -101,10 +101,13 @@ enough memory, then increasing this will speed up the transfers.`,
This is the number of chunks of the same file that are uploaded
concurrently.
NB if you set this to > 1 then the checksums of multpart uploads
become corrupted (the uploads themselves are not corrupted though).
If you are uploading small numbers of large file over high speed link
and these uploads do not fully utilize your bandwidth, then increasing
this may help to speed up the transfers.`,
Default: 4,
Default: 1,
Advanced: true,
}},
})