@kynver-app/runtime 0.1.22 → 0.1.23
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/dist/cli.js +3 -3
- package/dist/cli.js.map +2 -2
- package/dist/index.js +3 -3
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -2684,15 +2684,15 @@ async function runPipelineTick(args) {
|
|
|
2684
2684
|
const agentOsId = String(required(String(args.agentOsId || ""), "--agent-os-id"));
|
|
2685
2685
|
const execute = args.execute !== false && args.execute !== "false";
|
|
2686
2686
|
runStatus({ run: runId });
|
|
2687
|
-
const completedWorkers = await completeFinishedWorkers(runId, args);
|
|
2688
|
-
const staleReconcile = reconcileStaleWorkers();
|
|
2689
|
-
const planProgressSync = await syncActiveWorkerPlanProgress(runId, args);
|
|
2690
2687
|
const workspacePrefs = await fetchWorkspaceRuntimePreferences(agentOsId, args);
|
|
2691
2688
|
const resourceGate = observeRunnerResourceGate({
|
|
2692
2689
|
runId,
|
|
2693
2690
|
configuredMaxWorkersOverride: workspacePrefs?.maxConcurrentWorkers
|
|
2694
2691
|
});
|
|
2695
2692
|
const operatorTick = await postOperatorTick(agentOsId, runId, resourceGate, args);
|
|
2693
|
+
const completedWorkers = await completeFinishedWorkers(runId, args);
|
|
2694
|
+
const staleReconcile = reconcileStaleWorkers();
|
|
2695
|
+
const planProgressSync = await syncActiveWorkerPlanProgress(runId, args);
|
|
2696
2696
|
let maxStarts = resourceGate.slotsAvailable;
|
|
2697
2697
|
const tickBody = operatorTick;
|
|
2698
2698
|
const advised = tickBody.response?.dispatch?.recommendedMaxStarts;
|