fix(HAI-066): remove console.log for file overlap deferral in scheduler

- Remove console.log statement when deferring tasks due to file overlap
- Add test verifying no console.log is emitted on file overlap deferral
This commit is contained in:
Dustin Byrne
2026-03-26 00:11:46 -04:00
parent c8143a18b3
commit 502c2398b4
2 changed files with 29 additions and 3 deletions

View File

@@ -249,9 +249,6 @@ export class Scheduler {
}
}
if (overlappingTaskId) {
console.log(
`[scheduler] Deferring ${task.id}: file overlap with ${overlappingTaskId}`,
);
await this.store.updateTask(task.id, { status: "queued", blockedBy: overlappingTaskId });
continue;
}