We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When our Base array contains a domain it fails to connect, it only works with IP.
WORKS:
function custom_bases (seneca, options, bases, next) { const dns = require('dns') dns.lookup('BaseSystem', function(err, result) { console.log(result) console.log(result + ':39999') next([result + ':39999']) }) }
Not Working:
function custom_bases (seneca, options, bases, next) { next(['BaseSystem:39999']) }
The text was updated successfully, but these errors were encountered:
Really? I'm wich environments? That may be my actual problem!
Sorry, something went wrong.
I can confirm that this is actually the problem. I also have to provide a custom_base lookup function to make this work.
No branches or pull requests
When our Base array contains a domain it fails to connect, it only works with IP.
WORKS:
Not Working:
The text was updated successfully, but these errors were encountered: