diff --git a/core/src/test/java/org/elasticsearch/discovery/DiscoveryWithServiceDisruptionsIT.java b/core/src/test/java/org/elasticsearch/discovery/DiscoveryWithServiceDisruptionsIT.java index 4ad3abc59b4..e7a8487bcc0 100644 --- a/core/src/test/java/org/elasticsearch/discovery/DiscoveryWithServiceDisruptionsIT.java +++ b/core/src/test/java/org/elasticsearch/discovery/DiscoveryWithServiceDisruptionsIT.java @@ -1054,7 +1054,8 @@ public class DiscoveryWithServiceDisruptionsIT extends ESIntegTestCase { * node but already deleted on the source node. Search request should still work. */ public void testSearchWithRelocationAndSlowClusterStateProcessing() throws Exception { - configureUnicastCluster(3, null, 1); + // don't use DEFAULT settings (which can cause node disconnects on a slow CI machine) + configureUnicastCluster(Settings.EMPTY, 3, null, 1); InternalTestCluster.Async masterNodeFuture = internalCluster().startMasterOnlyNodeAsync(); InternalTestCluster.Async node_1Future = internalCluster().startDataOnlyNodeAsync();