Fix compile error introduced by conflict in previous two commits
This commit is contained in:
parent
c315ead0ac
commit
f69a5c9b3c
|
@ -90,7 +90,7 @@ public class TransportBootstrapClusterActionTests extends ESTestCase {
|
|||
TransportService.NOOP_TRANSPORT_INTERCEPTOR, boundTransportAddress -> discoveryNode, null, emptySet());
|
||||
|
||||
final ClusterSettings clusterSettings = new ClusterSettings(Settings.EMPTY, ClusterSettings.BUILT_IN_CLUSTER_SETTINGS);
|
||||
coordinator = new Coordinator("local", Settings.EMPTY, clusterSettings, transportService,
|
||||
coordinator = new Coordinator("local", Settings.EMPTY, clusterSettings, transportService, writableRegistry(),
|
||||
ESAllocationTestCase.createAllocationService(Settings.EMPTY),
|
||||
new MasterService("local", Settings.EMPTY, threadPool),
|
||||
() -> new InMemoryPersistedState(0, ClusterState.builder(new ClusterName("cluster")).build()), r -> emptyList(),
|
||||
|
|
|
@ -97,7 +97,7 @@ public class TransportGetDiscoveredNodesActionTests extends ESTestCase {
|
|||
TransportService.NOOP_TRANSPORT_INTERCEPTOR, boundTransportAddress -> localNode, null, emptySet());
|
||||
|
||||
final ClusterSettings clusterSettings = new ClusterSettings(Settings.EMPTY, ClusterSettings.BUILT_IN_CLUSTER_SETTINGS);
|
||||
coordinator = new Coordinator("local", Settings.EMPTY, clusterSettings, transportService,
|
||||
coordinator = new Coordinator("local", Settings.EMPTY, clusterSettings, transportService, writableRegistry(),
|
||||
ESAllocationTestCase.createAllocationService(Settings.EMPTY),
|
||||
new MasterService("local", Settings.EMPTY, threadPool),
|
||||
() -> new InMemoryPersistedState(0, ClusterState.builder(new ClusterName(clusterName)).build()), r -> emptyList(),
|
||||
|
|
Loading…
Reference in New Issue