Преглед на файлове

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

Colby McHenry преди 3 месеца
родител
ревизия
3ec4cde542
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/utils.ts

+ 1 - 1
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;