Skip to content

Commit

Permalink
Adjust type of compaction queue
Browse files Browse the repository at this point in the history
  • Loading branch information
patchwork01 committed Nov 15, 2024
1 parent b2f466e commit c7709f3
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@

import java.time.Duration;
import java.time.Instant;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
Expand Down Expand Up @@ -66,7 +65,7 @@ public class CompactionJobDispatcherTest {
InMemoryCompactionJobStatusStore statusStore = new InMemoryCompactionJobStatusStore();

Map<String, List<CompactionJob>> s3PathToCompactionJobBatch = new HashMap<>();
List<CompactionJob> compactionQueue = new ArrayList<>();
Queue<CompactionJob> compactionQueue = new LinkedList<>();
Queue<BatchRequestMessage> delayedPendingQueue = new LinkedList<>();

@Test
Expand Down

0 comments on commit c7709f3

Please sign in to comment.