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