diff --git a/test/burn/org/apache/cassandra/index/sai/LongVectorTest.java b/test/burn/org/apache/cassandra/index/sai/LongVectorTest.java index e0cfad104a55..7de1acffbb51 100644 --- a/test/burn/org/apache/cassandra/index/sai/LongVectorTest.java +++ b/test/burn/org/apache/cassandra/index/sai/LongVectorTest.java @@ -32,8 +32,6 @@ import org.junit.Test; import org.slf4j.Logger; -import org.apache.cassandra.service.reads.thresholds.CoordinatorWarnings; - import static org.apache.cassandra.config.CassandraRelevantProperties.MEMTABLE_SHARD_COUNT; import static org.assertj.core.api.Assertions.assertThat; @@ -86,7 +84,6 @@ public void testConcurrentOps(Op op) throws ExecutionException, InterruptedExcep private static void wrappedOp(Op op, Integer i) { - CoordinatorWarnings.init(); // Initialize for this thread try { op.run(i); @@ -95,10 +92,6 @@ private static void wrappedOp(Op op, Integer i) { throw new RuntimeException(e); } - finally - { - CoordinatorWarnings.reset(); // Clean up thread-local state - } } @Test