Skip to content

Commit

Permalink
[TEST] UnicastBackwardsCompatibilityTest should not copy internal nod…
Browse files Browse the repository at this point in the history
…e settings to external nodes

Recent test failures triggered by #7289 were caused by this, simply because internal node settings (transport type key) that are not supported by the external older nodes were copied to them by mistake.
  • Loading branch information
javanna committed Aug 20, 2014
1 parent 357ab3a commit 3450e82
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -45,7 +45,7 @@ protected Settings externalNodeSettings(int nodeOrdinal) {
.put("transport.tcp.port", 9390 + nodeOrdinal)
.put("discovery.zen.ping.multicast.enabled", false)
.put("discovery.zen.ping.unicast.hosts", "localhost:9380,localhost:9381,localhost:9390,localhost:9391")
.put(super.nodeSettings(nodeOrdinal))
.put(super.externalNodeSettings(nodeOrdinal))
.build();
}

Expand Down

0 comments on commit 3450e82

Please sign in to comment.