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