Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
ronag committed Aug 23, 2021
1 parent 1f4e70e commit 48eb663
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 34 deletions.
4 changes: 3 additions & 1 deletion lib/internal/streams/duplexify.js
Expand Up @@ -206,15 +206,17 @@ module.exports = function duplexify(body, name) {
function fromAsyncGen(fn) {
let { promise, resolve } = createDeferredPromise();
const ac = new AbortController();
const signal = ac.signal;
const value = fn(async function*() {
while (true) {
const { chunk, done, cb } = await promise;
process.nextTick(cb);
if (done) return;
if (signal.aborted) throw new AbortError();
yield chunk;
({ promise, resolve } = createDeferredPromise());
}
}(), { signal: ac.signal });
}(), { signal });

return {
value,
Expand Down
33 changes: 0 additions & 33 deletions test/parallel/test-stream-pipeline.js
Expand Up @@ -1390,39 +1390,6 @@ const tsp = require('timers/promises');
}));
}

{
const writableLike = new Stream();
writableLike.writableNeedDrain = true;

pipeline(
async function *() {},
writableLike,
common.mustCall((err) => {
assert.strictEqual(err.code, 'ERR_STREAM_PREMATURE_CLOSE');
})
);

writableLike.emit('close');
}

{
const writableLike = new Stream();
writableLike.write = () => false;

pipeline(
async function *() {
yield null;
yield null;
},
writableLike,
common.mustCall((err) => {
assert.strictEqual(err.code, 'ERR_STREAM_PREMATURE_CLOSE');
})
);

writableLike.emit('close');
}

{
const ac = new AbortController();
const signal = ac.signal;
Expand Down

0 comments on commit 48eb663

Please sign in to comment.