Skip to content

Commit ab130e9

Browse files
ronagtargos
authored andcommitted
stream: only use legacy close listeners if not willEmitClose
Some streams that willEmitClose unecessarily fallback to legacy events. PR-URL: #36649 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent c9861a3 commit ab130e9

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

lib/internal/streams/end-of-stream.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,9 @@ function eos(stream, options, callback) {
129129

130130
if (isRequest(stream)) {
131131
stream.on('complete', onfinish);
132-
stream.on('abort', onclose);
132+
if (!willEmitClose) {
133+
stream.on('abort', onclose);
134+
}
133135
if (stream.req) onrequest();
134136
else stream.on('request', onrequest);
135137
} else if (writable && !wState) { // legacy streams
@@ -138,7 +140,7 @@ function eos(stream, options, callback) {
138140
}
139141

140142
// Not all streams will emit 'close' after 'aborted'.
141-
if (typeof stream.aborted === 'boolean') {
143+
if (!willEmitClose && typeof stream.aborted === 'boolean') {
142144
stream.on('aborted', onclose);
143145
}
144146

test/parallel/test-stream-finished.js

+22
Original file line numberDiff line numberDiff line change
@@ -473,3 +473,25 @@ testClosed((opts) => new Writable({ write() {}, ...opts }));
473473
finished(p, common.mustNotCall());
474474
}));
475475
}
476+
477+
{
478+
const w = new Writable({
479+
write(chunk, encoding, callback) {
480+
process.nextTick(callback);
481+
}
482+
});
483+
w.aborted = false;
484+
w.end();
485+
let closed = false;
486+
w.on('finish', () => {
487+
assert.strictEqual(closed, false);
488+
w.emit('aborted');
489+
});
490+
w.on('close', common.mustCall(() => {
491+
closed = true;
492+
}));
493+
494+
finished(w, common.mustCall(() => {
495+
assert.strictEqual(closed, true);
496+
}));
497+
}

0 commit comments

Comments
 (0)