@nsshunt/stsrunnerframework 1.0.97 → 1.0.98
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.
|
@@ -2842,14 +2842,11 @@ class STSWorkerManager {
|
|
|
2842
2842
|
return __privateGet(this, _workersEx)[workerId][command]();
|
|
2843
2843
|
}
|
|
2844
2844
|
} else {
|
|
2845
|
-
const retVal = []
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
} else {
|
|
2851
|
-
retVal.push(__privateGet(this, _workersEx)[workerId].runnersEx[runnerId][command]());
|
|
2852
|
-
}
|
|
2845
|
+
const retVal = Object.values(__privateGet(this, _workersEx)[workerId].runnersEx).filter((runnerEx) => runnerIds.length === 0 ? true : runnerIds.includes(runnerEx.id)).map((runnerEx) => {
|
|
2846
|
+
if (command === "UpdateOptions") {
|
|
2847
|
+
return __privateGet(this, _workersEx)[workerId].runnersEx[runnerEx.id][command](executionProfile);
|
|
2848
|
+
} else {
|
|
2849
|
+
return __privateGet(this, _workersEx)[workerId].runnersEx[runnerEx.id][command]();
|
|
2853
2850
|
}
|
|
2854
2851
|
});
|
|
2855
2852
|
return retVal;
|