Skip to content

Commit fe23e57

Browse files
committed
Stop passing the deleted active field in the signal fixture
RunStateHandle dropped its own active flag in favor of handle presence as the sole liveness signal, but this fixture still set it. tsconfig excludes tests/ from typecheck, so nothing caught the stale field and the setter silently ignored the excess property.
1 parent a0b0571 commit fe23e57

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/fixtures/crash-run/simulate-signal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ await saveState(cwd, sessionId, {
2626
model,
2727
});
2828

29-
setActiveRun({ sessionId, cwd, active: true, task, startedAt, model });
29+
setActiveRun({ sessionId, cwd, task, startedAt, model });
3030
installSignalHandlers();
3131

3232
process.stdout.write(`${sessionDir(cwd, sessionId)}\n`);

0 commit comments

Comments
 (0)