-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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
ENETUNREACH
not handled for http.request
in 7.10.0
#12841
Labels
Comments
mscdex
added
confirmed-bug
Issues with confirmed bugs.
and removed
net
Issues and PRs related to the net subsystem.
labels
May 5, 2017
Works fine in v7.9.0. Looks like a regression somewhere... |
Bisecting reveals d0b1be1 is the culprit. FWIW this is also happening in master. /cc @bnoordhuis |
cyrus-and
added a commit
to cyrus-and/chrome-remote-interface
that referenced
this issue
May 9, 2017
evanlucas
added a commit
to evanlucas/node
that referenced
this issue
May 23, 2017
This test ensures that a http client request with the default agent that has a socket that is immediately destroyed can still be caught by adding an error event listener to the request object. PR-URL: nodejs#12854 Fixes: nodejs#12841 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
jasnell
pushed a commit
that referenced
this issue
May 23, 2017
This reverts commit 571882c. Removing the process.nextTick() call can prevent the consumer from being able to catch error events. PR-URL: #12854 Fixes: #12841 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
jasnell
pushed a commit
that referenced
this issue
May 23, 2017
This test ensures that a http client request with the default agent that has a socket that is immediately destroyed can still be caught by adding an error event listener to the request object. PR-URL: #12854 Fixes: #12841 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
jasnell
pushed a commit
that referenced
this issue
May 28, 2017
This reverts commit 571882c. Removing the process.nextTick() call can prevent the consumer from being able to catch error events. PR-URL: #12854 Fixes: #12841 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
jasnell
pushed a commit
that referenced
this issue
May 28, 2017
This test ensures that a http client request with the default agent that has a socket that is immediately destroyed can still be caught by adding an error event listener to the request object. PR-URL: #12854 Fixes: #12841 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
As the title says that error is not delivered via the returned event emitter, an exception is thrown instead. Other errors are properly handled, e.g., using
{port: 0}
which causesECONNREFUSED
. Also the net subsystem doesn't seem to be affected when I try withnet.connect
using the same options.Here is the snippet to reproduce it:
Incorrect behavior
Expected behavior
The text was updated successfully, but these errors were encountered: