Skip to content

Commit

Permalink
stream: drain Transform with 0 highWaterMark
Browse files Browse the repository at this point in the history
Fixes: #40935

PR-URL: #40947
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
  • Loading branch information
ronag committed Nov 27, 2021
1 parent 90faf55 commit 37f1dd9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/internal/streams/transform.js
Expand Up @@ -196,6 +196,7 @@ Transform.prototype._write = function(chunk, encoding, callback) {
wState.ended || // Backwards compat.
length === rState.length || // Backwards compat.
rState.length < rState.highWaterMark ||
rState.highWaterMark === 0 ||
rState.length === 0
) {
callback();
Expand Down
8 changes: 8 additions & 0 deletions test/parallel/test-stream-passthrough-drain.js
@@ -0,0 +1,8 @@
'use strict';
const common = require('../common');
const { PassThrough } = require('stream');

const pt = new PassThrough({ highWaterMark: 0 });
pt.on('drain', common.mustCall());
pt.write('hello');
pt.read();

0 comments on commit 37f1dd9

Please sign in to comment.