From ff3e5ab76d7ad1386e216eadaf8a1a7e8ea9e0b8 Mon Sep 17 00:00:00 2001 From: Alex Petrov Date: Fri, 9 Aug 2024 19:56:15 +0200 Subject: [PATCH] Ninja: Fix test merge after fixing CASSANDRA-19534 --- .../org/apache/cassandra/distributed/test/ReadRepairTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/test/distributed/org/apache/cassandra/distributed/test/ReadRepairTest.java b/test/distributed/org/apache/cassandra/distributed/test/ReadRepairTest.java index 9a70e897fe..0588d56b61 100644 --- a/test/distributed/org/apache/cassandra/distributed/test/ReadRepairTest.java +++ b/test/distributed/org/apache/cassandra/distributed/test/ReadRepairTest.java @@ -356,6 +356,7 @@ public class ReadRepairTest extends TestBaseImpl String key = "test1"; try (Cluster cluster = init(Cluster.build() .withConfig(config -> config.with(Feature.GOSSIP, Feature.NETWORK) + .set("native_transport_timeout", String.format("%dms", Integer.MAX_VALUE)) .set("read_request_timeout", String.format("%dms", Integer.MAX_VALUE))) .withTokenSupplier(TokenSupplier.evenlyDistributedTokens(4)) .withNodeIdTopology(NetworkTopology.singleDcNetworkTopology(4, "dc0", "rack0"))