Skip to content

Commit

Permalink
Fix double start of test cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
alpar-t committed Oct 3, 2019
1 parent 9c7b589 commit 392013c
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,10 @@ private void commonNodeConfig() {
}
if (firstNode == null) {
firstNode = node;
firstNode.start();
if (node.getVersion().before("6.5.0")) {
// We need to start the first node early to be able to provide unicast.hosts
firstNode.start();
}
}
}
}
Expand Down

0 comments on commit 392013c

Please sign in to comment.