- From: Domenic Denicola <notifications@github.com>
- Date: Fri, 24 Mar 2017 03:10:12 -0700
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 24 March 2017 10:11:35 UTC
domenic commented on this pull request.
> const abortRequest = stream._pendingAbortRequest;
stream._pendingAbortRequest = undefined;
const promise = WritableStreamDefaultControllerAbort(stream._writableStreamController, abortRequest._reason);
promise.then(
abortRequest._resolve,
abortRequest._reject
);
+ stream._backpressure = false;
Hmm. That one also runs into the bad assert trying to update ready promise. Maybe something is very broken about ready promise once we're inside WritableStreamHandleAbortRequestIfPending.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/pull/705#discussion_r107870090
Received on Friday, 24 March 2017 10:11:35 UTC