I've been using Google cloud storage api to upload some files. I've run into some errors of socket hang up when using the request for the upload.
After searching a bit, I've came across Error: socket hang up code: 'ECONNRESET' on Google cloud storage which solved the issue using:
.createWriteStream({
resumable: false,
validation: false,
...
}
I couldn't find any documentation about those parameters (resumable and validation) and why using them solved my issue. How those parameters works on this context?