-
Notifications
You must be signed in to change notification settings - Fork 437
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Socket creation error on Node version 7.7.2 #532
Comments
I think this will be fixed with the upcoming |
If it's Node 7.7.2, can be bug of Node. If yes, it should be solved by nodejs/node#11762 |
I have the some problen with node 7.7.0 and 7.7.2 and it's affecting a LOT of modules… (Redis for example) |
For me this is an issue in node v7.7.2. It worked in node v7.7.1. In connection.js, connectOnPort calls socket.connect with one arg: But socket.connect can't handle the second arg being undefined: Appears to be fixed by: |
This issue does not exist in Tedious 1.15.0 which got released just a few days back. You may want to upgrade. |
Hi,
Upgrading to node v.7.7.2 on Windows results in this error when trying to use Tedious:
Going to row 429 in tedious/lib/connection.js and adding an empty function as a second parameter to the
socket.connect
call resolves the issue. I'm not sure whether this is a nodejs or tedious problem.For the time being I've downgraded node to 7.7.1
The text was updated successfully, but these errors were encountered: