-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
dns: don't skip getaddrino/getnameinfo when c-ares init fails #8966
Comments
My vote is to quit. If people really need the franken-init state, perhaps we could add flag for it. |
i'd like some way around this. my set up is just setting up a LAN with a switch and letting windows assign an IP and Mask, however no DNS is set. The machines should still be able to communicate with no DNS set. |
@bnoordhuis @cjihrig Should this remain open? If so, should we add |
We have a client server application with a C++/Qt UI and a NodeJS backend (running as a windows service). We've seen this bug only once but in that case it prevents our application (which needs only to listen on 127.0.0.1 and needs no DNS) from working. So we would also be interested in a fix. |
I'm on the fence myself but happy to review pull requests or answer questions. Labels added. |
Looks like this might be fixed in c-ares 1.13.0: EDIT: Actually, looks like it should already be fixed in 1.12... |
It is fixed already? In that case, should this issue be closed? |
Not fixed and no consensus on whether it should be fixed. |
@bnoordhuis I think this is actually two issues now:
I don't care much about 1) but I do care about 2). Do you mean to say that c-ares might never be updated in Node.js? |
This issue is about (1), not (2). If you want to see c-ares updated, can you file a new issue? |
Actually, c-ares 1.13 it's already in Node 9, so 2) is not relevant anymore. Sorry for the noise! |
Hi, Is this available? I would like to work on this. |
@dhanushuUzumaki See #8966 (comment). You're welcome to open a pull request but I can't promise it'll be accepted. |
Put into https://github.com/nodejs/node/projects/13 backlog |
#8710 makes
process.binding('cares_wrap')
throw a JS exception instead of aborting whenares_library_init()
orares_init_options()
fail.Maybe we can do better. We can still bring up the bindings for getaddrinfo and getnameinfo because those don't depend on c-ares (although if c-ares fails, there is a goodly chance the others won't work either.)
Policy question: do we think it's better to quit or keep on trucking in a franken-init state?
The text was updated successfully, but these errors were encountered: