Skip to content

Commit

Permalink
Merge pull request #14 from diegopacheco/dev
Browse files Browse the repository at this point in the history
FIX connection bug introduced n 0.7 and change key from x_ to x
  • Loading branch information
diegopacheco authored Nov 2, 2017
2 parents baa1b3a + 204f9a9 commit f6d3fe2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ public String toJsonTopology(){
}

public Host toHOST(){
return new Host(this.getServer(),this.getPort(),this.getRack(),Status.Up);
Integer port = Integer.parseInt(this.getPort());
return new Host(this.getServer(),port,this.getRack(),Status.Up);
}

public String toSeed(){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ private List<DynomiteNodeInfo> checkNodeConnectivity(ExecutionContext ec) {
ClientCache.put(node.toSeed(), client);
}

String prefix = "awesomeSbrubles_";
String prefix = "awesomeSbrubles";
client.get(prefix);

node.setNodeClient(client);
Expand Down

0 comments on commit f6d3fe2

Please sign in to comment.