Conversation
c56646a to
a62dd2a
Compare
a62dd2a to
3f1deb0
Compare
|
@mcollina I would very much like to make a release out of this as soon as possible. |
|
go for it! |
|
Is |
|
|
|
Hm, I don't understand how that works at the moment unfortunately. |
|
@mcollina Do we know someone that knows these internals well and we could ask for a quick review in regards to |
|
Seems like whatever |
|
I think @mcollina was right here: https://github.com/nodejs/node/pull/25436/files#diff-e6ef024c3775d787c38487a6309e491dR602 Overriding [public] Stream API sounds like a mistake. |
|
Why does it override |
What overrides it? |
Where is that comment? |
If you click the
I'm still talking about Node.js core (lib/net.js file) 😅 Shouldn't it be: -Socket.prototype.read = function(n) {
+Socket.prototype._read = function(n) {
if (this[kBuffer] && !this.connecting && this._handle &&
!this._handle.reading) {
tryReadStart(this);
}
- return stream.Duplex.prototype.read.call(this, n);
}; |
|
@szmarczak Yea, that's a bit weird... does it affect us though? |


Fixes: #434