- From: Takeshi Yoshino <notifications@github.com>
- Date: Fri, 28 Oct 2016 08:15:57 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Friday, 28 October 2016 15:16:29 UTC
tyoshino commented on this pull request. > @@ -363,14 +386,18 @@ module.exports = class TransformStream { this._readable = new ReadableStream(source, transformer.readableStrategy); - const sink = new TransformStreamSink(this, startPromise); + const sink = new TransformStreamSink(this, startPromise.then(() => { + return TransformStreamBackpressureGonePromise(this); + })); Oh, sorry! Addressing in #577 -- 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/571
Received on Friday, 28 October 2016 15:16:29 UTC