-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Web Streams: reject pending reads when releasing reader #41506
Comments
Hello. Every time I run |
@essential-existence I suggest you open a separate issue for that. This issue is about implementing a change to That said, I am a bit curious. That error appears as the rejection reason for |
Great to see this change landed in the spec! Definitely will be nice to get this behavior implemented. |
Yes, indeed, without affecting |
There has been no activity on this feature request for 5 months and it is unlikely to be implemented. It will be closed 6 months after the last non-automated comment. For more information on how the project manages feature requests, please consult the feature request management document. |
Thank you auto-close bot bit I think this one needs to stay open for a bit still (unless it has already been resolved?) |
There has been no activity on this feature request for 5 months and it is unlikely to be implemented. It will be closed 6 months after the last non-automated comment. For more information on how the project manages feature requests, please consult the feature request management document. |
Previously, calling
ReadableStreamDefaultReader.releaseLock()
orReadableStreamBYOBReader.releaseLock()
while there are pendingread()
requests would throw aTypeError
.The specification has been changed to allow this case, and to reject such pending
read()
requests instead.Standard change: whatwg/streams#1168
Tests: web-platform-tests/wpt#32072
The text was updated successfully, but these errors were encountered: