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
We recently upgraded to fake-gcs-server 1.45.1 and started getting the following error from google-cloud/storage when streaming to the fake gcs server using createWriteStream():
TypeError: Only absolute URLs are supported
When we move back to 1.45.0, then we no longer have the issue. Also, if we set resumable to false then 1.45.1 does not cause an error. For example:
createWriteStream({ resumable: false })
The text was updated successfully, but these errors were encountered:
This is a regression introduced in #1159: when default parameters are
used, the external URL would be empty, breaking resumable uploads.
Fixes#1166.
Fixes#1170.
We recently upgraded to fake-gcs-server 1.45.1 and started getting the following error from google-cloud/storage when streaming to the fake gcs server using
createWriteStream()
:TypeError: Only absolute URLs are supported
When we move back to 1.45.0, then we no longer have the issue. Also, if we set
resumable
tofalse
then 1.45.1 does not cause an error. For example:createWriteStream({ resumable: false })
The text was updated successfully, but these errors were encountered: