mirror of
https://gitlab.com/timvisee/send.git
synced 2025-12-07 14:40:55 +03:00
disable validation and resumable for gcs uploads
This commit is contained in:
@@ -19,7 +19,12 @@ class GCSStorage {
|
|||||||
set(id, file) {
|
set(id, file) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
file
|
file
|
||||||
.pipe(this.bucket.file(id).createWriteStream())
|
.pipe(
|
||||||
|
this.bucket.file(id).createWriteStream({
|
||||||
|
validation: false,
|
||||||
|
resumable: false
|
||||||
|
})
|
||||||
|
)
|
||||||
.on('error', reject)
|
.on('error', reject)
|
||||||
.on('finish', resolve);
|
.on('finish', resolve);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user