@nsshunt/stsrunnerframework 1.0.199 → 1.0.200
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.
|
@@ -3522,9 +3522,11 @@
|
|
|
3522
3522
|
if (!runnerEx.runnerHistory) {
|
|
3523
3523
|
runnerEx.runnerHistory = [];
|
|
3524
3524
|
}
|
|
3525
|
+
const runnerHistoryRecord = { ...runner };
|
|
3526
|
+
runnerHistoryRecord.runnerHistory = [];
|
|
3525
3527
|
runnerEx.runnerHistory.push({
|
|
3526
3528
|
eventDate: /* @__PURE__ */ new Date(),
|
|
3527
|
-
runner:
|
|
3529
|
+
runner: runnerHistoryRecord
|
|
3528
3530
|
});
|
|
3529
3531
|
this.#SyncRunnerData(runnerEx, runner);
|
|
3530
3532
|
this.#debug(`STSWorkerManager:#RunnerStateChange(): Worker: [${workerEx.id}] Runner: [${runner.id}] Previous State: [${previousState}] State: [${runner.state}]`);
|