Skip to content
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

Permit any pending writes to complete on error #785

Merged
merged 2 commits into from
Sep 4, 2017

Commits on Sep 1, 2017

  1. Permit any pending writes to complete on error

    Previously if the write() or start() methods of TransformStreamDefaultSink were
    waiting for backpressure to be relieved when the readable was errored, then they
    would never complete, meaning that things depending on them such as the promises
    returned by writer.write() and writer.close() would never resolve either.
    
    Set backpressure to false when erroring the TransformStream to permit pending
    operations to complete.
    
    Also add tests for these cases.
    ricea committed Sep 1, 2017
    Configuration menu
    Copy the full SHA
    2bc92e2 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2017

  1. Configuration menu
    Copy the full SHA
    209f1f2 View commit details
    Browse the repository at this point in the history