Open zbjornson opened 6 years ago
there is also a leak caused by mapping ServerResponse.once to ServerResponse.on so there is no easy way to wait for 'drain' events to happen by just using the response.once('drain', ...)
If anyone came here looking for a workaround for the ability to call res.once('drain', ...)
without have node warn about MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 drain listeners added to [Gzip]. Use emitter.setMaxListeners() to increase limit
..
This is a bit of a mess, but you can do something like this:
let onDrain;
// add a single drain listener early on
res.on('drain', () => {
if (onDrain) {
// call the onDrain callback at most once
onDrain();
onDrain = undefined;
}
});
// later, when you would normally call res.once('drain', ...)
onDrain = () => {
// resume your input stream or whatever
};
I hope that helps someone feeling stuck on this old issue.
This is sort of a weird scenario, but this test case fails:
I hit this in some code that retries creating a read stream until the source exists. We clean up from our side:
rs.on("error", e => { rs.unpipe("res"); })
. Seems likecompression
needs to be cleaning up its listeners when"unpipe"
happens.