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
Hello,
It seems that peer_name is wrong when ip_to_bind is passed.
At gossiper.js:35 shouldn't it be? (as there is no address property)
this.peer_name = [this.ip_to_bind, this.port.toString()].join(':');
Cheers
The text was updated successfully, but these errors were encountered:
I've just assigned the address property manually when specifying an ip to bind to.
var Gossiper = require('./node-gossip/index.js').Gossiper var g = new Gossiper(9000, [], '192.168.1.1'); g.address = '8.8.8.8'; g.start();
The code does seem to assume that whatever you're binding to can be routed to from any peers.
Sorry, something went wrong.
No branches or pull requests
Hello,
It seems that peer_name is wrong when ip_to_bind is passed.
At gossiper.js:35 shouldn't it be? (as there is no address property)
Cheers
The text was updated successfully, but these errors were encountered: