Closed
Description
fs.createWriteStream('path').pipe(bucket.file('path').createWriteStream({
resumable: true
})).on('error', function (err) {
// err = Not Found
});
when i send resumable: true
or without resumable
(the default is true) i get Not Found
error on most of the files.
and when i send resumable: false
i get the error less times, but still get it.