Skip to content
This repository was archived by the owner on Mar 12, 2026. It is now read-only.

Commit 1a47fd9

Browse files
authored
fix: logic of keep scheduling compaction (#1113)
## Rationale See title ## Detailed Changes - Remove ! in logic of keep scheduling compaction ## Test Plan - Existing tests - mannually tests
1 parent b42eb0d commit 1a47fd9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

analytic_engine/src/compaction/scheduler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ impl ScheduleWorker {
468468
waiter_notifier: WaiterNotifier,
469469
token: MemoryUsageToken,
470470
) {
471-
let keep_scheduling_compaction = !compaction_task.contains_min_level();
471+
let keep_scheduling_compaction = compaction_task.contains_min_level();
472472

473473
let runtime = self.runtime.clone();
474474
let space_store = self.space_store.clone();

0 commit comments

Comments
 (0)