@yemi33/minions 0.1.67 → 0.1.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/dashboard.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dashboard.js
CHANGED
|
@@ -263,7 +263,7 @@ const CC_SESSION_MAX_TURNS = 50;
|
|
|
263
263
|
let ccSession = { sessionId: null, createdAt: null, lastActiveAt: null, turnCount: 0 };
|
|
264
264
|
let ccInFlight = false;
|
|
265
265
|
let ccInFlightSince = 0; // timestamp — auto-release stuck guard
|
|
266
|
-
const CC_INFLIGHT_TIMEOUT_MS =
|
|
266
|
+
const CC_INFLIGHT_TIMEOUT_MS = 2 * 60 * 1000; // 2 minutes — auto-release if request hangs
|
|
267
267
|
|
|
268
268
|
function ccSessionValid() {
|
|
269
269
|
if (!ccSession.sessionId) return false;
|
package/package.json
CHANGED