@nsshunt/stsrunnerframework 1.0.118 → 1.0.120

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.
@@ -3263,12 +3263,11 @@ class STSWorkerManager {
3263
3263
  }
3264
3264
  CreateWorkerCopySmall(workerEx) {
3265
3265
  try {
3266
- const { id, options, runnersEx, workerManagerId } = workerEx;
3267
3266
  const workerCopy = {
3268
- id,
3267
+ id: workerEx.id,
3269
3268
  runners: {}
3270
3269
  };
3271
- for (const [, runnerEx] of Object.entries(runnersEx)) {
3270
+ for (const [, runnerEx] of Object.entries(workerEx.runnersEx)) {
3272
3271
  workerCopy.runners[runnerEx.id] = this.CreateRunnerCopySmall(runnerEx);
3273
3272
  }
3274
3273
  return workerCopy;