From 8fbc0d086b8d7f6c90be9c239143f1148c101e5e Mon Sep 17 00:00:00 2001 From: Brandon Williams Date: Wed, 13 May 2026 12:11:43 -0500 Subject: [PATCH] CNDB-17792: Fix LongVectorTest coordinator warning state handling --- .../org/apache/cassandra/index/sai/LongVectorTest.java | 7 ------- 1 file changed, 7 deletions(-) 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