mirror of
https://github.com/fsouza/fake-gcs-server.git
synced 2026-04-26 06:05:54 +03:00
[GH-ISSUE #1170] createWriteStream() with resumable true results in absolute URLs error on 1.45.1 #172
Labels
No labels
bug
compatibility-issue
docker
documentation
enhancement
help wanted
needs information
pull-request
question
stale
unfortunate
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/fake-gcs-server#172
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @byumark on GitHub (May 17, 2023).
Original GitHub issue: https://github.com/fsouza/fake-gcs-server/issues/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 supportedWhen we move back to 1.45.0, then we no longer have the issue. Also, if we set
resumabletofalsethen 1.45.1 does not cause an error. For example:createWriteStream({ resumable: false })@fsouza commented on GitHub (May 27, 2023):
Thanks for reporting and apologies for the breakage. This is the same issue as #1166 (different SDKs have different error messages).
I broke it in #1159. #1184 fixes it.