chore: Reduce stale lock timeout from 10 minutes to 2 minutes

This commit is contained in:
Colby McHenry
2026-03-18 14:52:20 -05:00
parent b964d5909a
commit 3ec4cde542
+1 -1
View File
@@ -185,7 +185,7 @@ export class FileLock {
private held = false;
/** Locks older than this are considered stale regardless of PID status */
private static readonly STALE_TIMEOUT_MS = 10 * 60 * 1000; // 10 minutes
private static readonly STALE_TIMEOUT_MS = 2 * 60 * 1000; // 2 minutes
constructor(lockPath: string) {
this.lockPath = lockPath;