Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions test/burn/org/apache/cassandra/index/sai/LongVectorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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);
Expand All @@ -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
Expand Down
Loading