channel-worker 2.0.1 → 2.0.2
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 -0
- package/package.json +1 -1
package/lib/command-poller.js
CHANGED
|
@@ -1155,6 +1155,7 @@ class CommandPoller {
|
|
|
1155
1155
|
|
|
1156
1156
|
// 6. Pick target profile — launch new if under limit, else assign to running
|
|
1157
1157
|
let target = null;
|
|
1158
|
+
console.log(`[scene-dispatch] running=${runningRenderers.length}/${parallelLimit} offline=${offlineRenderers.length} queue=${queueCount} names=[${runningRenderers.map(r=>r.name)}]`);
|
|
1158
1159
|
|
|
1159
1160
|
if (runningRenderers.length < parallelLimit && offlineRenderers.length > 0) {
|
|
1160
1161
|
// Under limit — launch a new profile first
|