channel-worker 2.1.6 → 2.1.7
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/lib/command-poller.js +1 -1
- package/package.json +1 -1
package/lib/command-poller.js
CHANGED
|
@@ -1179,7 +1179,7 @@ class CommandPoller {
|
|
|
1179
1179
|
|
|
1180
1180
|
// 3b. Running profiles with stale heartbeat + PENDING commands → extension never started
|
|
1181
1181
|
// Only restart if commands are still "pending" (not "running" = extension picked up but busy)
|
|
1182
|
-
const HEARTBEAT_STALE =
|
|
1182
|
+
const HEARTBEAT_STALE = 30 * 1000; // 30s — extension heartbeats every 15s even when busy
|
|
1183
1183
|
const now = Date.now();
|
|
1184
1184
|
for (const r of [...runningRenderers]) {
|
|
1185
1185
|
try {
|