@nsshunt/stsrunnerframework 1.0.116 → 1.0.118
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.
|
@@ -3233,8 +3233,9 @@ class STSWorkerManager {
|
|
|
3233
3233
|
id: runnerEx.id,
|
|
3234
3234
|
iteration: runnerEx.iteration,
|
|
3235
3235
|
state: runnerEx.state,
|
|
3236
|
-
|
|
3237
|
-
|
|
3236
|
+
options: {
|
|
3237
|
+
plan: runnerEx.options.plan
|
|
3238
|
+
}
|
|
3238
3239
|
};
|
|
3239
3240
|
return retVal;
|
|
3240
3241
|
} catch (error) {
|
|
@@ -3265,8 +3266,7 @@ class STSWorkerManager {
|
|
|
3265
3266
|
const { id, options, runnersEx, workerManagerId } = workerEx;
|
|
3266
3267
|
const workerCopy = {
|
|
3267
3268
|
id,
|
|
3268
|
-
runners: {}
|
|
3269
|
-
workerManagerId
|
|
3269
|
+
runners: {}
|
|
3270
3270
|
};
|
|
3271
3271
|
for (const [, runnerEx] of Object.entries(runnersEx)) {
|
|
3272
3272
|
workerCopy.runners[runnerEx.id] = this.CreateRunnerCopySmall(runnerEx);
|