You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 3, 2026. It is now read-only.
Environment details
@google-cloud/storageversion: 4.6.0Steps to reproduce
bucket.uploadwith a file size over theRESUMABLE_THRESHOLDto upload/home/.configis not writable the upload failsDo the same steps but with
file.createWriteStreamand a file stream and the upload works.From looking at the code,
bucket.uploadsetsoptions.resumableand that means the retry check infile.createWriteStreamdoesn't work.Note I discovered this issue by trying a resumable upload on Cloud Run which doesn't allow writing to
/home/.configwhich doesn't seem right!