From 3ec4cde542908cfd80024074927044a14ca9a85e Mon Sep 17 00:00:00 2001 From: Colby McHenry Date: Wed, 18 Mar 2026 14:52:20 -0500 Subject: [PATCH] chore: Reduce stale lock timeout from 10 minutes to 2 minutes --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index 3e7608a..e75e58e 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -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;