FIX: Disable multipart backup uploads to S3

Multipart upload from within the browser result in corrupt files on S3.
This commit is contained in:
Gerhard Schlager 2018-12-18 16:00:24 +01:00
parent 081aa6ad2b
commit 32784ad11a
1 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,8 @@ export default Em.Component.extend(UploadMixin, {
return {
type: "PUT",
dataType: "xml",
autoUpload: false
autoUpload: false,
multipart: false
};
},