You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A commit recently landed in Node core that was released as v7.10.0 two days ago.
It breaks async-listener because net.connect no longer calls Socket.prototype.connect. Furthermore, it's not possible to simply monkey-patch net.connect because it's being called internally in node by simply referencing the connect function and not the exports.connect function.
Because issue othiym23#109 have
not yet been solved for Node.js 7, the test suite currently fails when
running on the latest version of Node.js 7 (v7.10.0 as of this commit).
This commit allows 7.x to fail, but adds an extra build for 7.9.0 which
is know to be good.
This should be reverted when/if Node.js 7 is patched accordingly.
A commit recently landed in Node core that was released as v7.10.0 two days ago.
It breaks async-listener because
net.connect
no longer callsSocket.prototype.connect
. Furthermore, it's not possible to simply monkey-patchnet.connect
because it's being called internally in node by simply referencing theconnect
function and not theexports.connect
function.I'm working on fixing this together with @cjihrig and @jasnell. See nodejs/node#12852 for details.
It will most likely be released as v7.10.1.
The text was updated successfully, but these errors were encountered: