fix gossiping port as id

This commit is contained in:
Edward Capriolo
2015-01-12 10:46:38 -05:00
parent 4245908b38
commit 61332bfbe7
2 changed files with 2 additions and 2 deletions

View File

@ -40,8 +40,8 @@ public abstract class GossipMember {
public GossipMember(String host, int port, String id, int heartbeat) {
_host = host;
_port = port;
_heartbeat = heartbeat;
_id = id;
_heartbeat = heartbeat;
}
/**