@nsshunt/stsrunnerframework 1.0.152 → 1.0.154
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.
|
@@ -2427,7 +2427,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
2427
2427
|
}
|
|
2428
2428
|
});
|
|
2429
2429
|
// Filter by plan and/or tag. Leave blank to not use in filter.
|
|
2430
|
-
__publicField(this, "GetArchiveList", (runnerSearchFilters) => {
|
|
2430
|
+
__publicField(this, "GetArchiveList", async (runnerSearchFilters) => {
|
|
2431
2431
|
try {
|
|
2432
2432
|
return __privateGet(this, _archiveList).filter((runner) => {
|
|
2433
2433
|
var _a, _b;
|
|
@@ -3453,6 +3453,12 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
3453
3453
|
clearTimeout(messageRecord.timeout);
|
|
3454
3454
|
const retPayload = { ...payload.executeRunnerActionResult };
|
|
3455
3455
|
delete __privateGet(this, _messages)[messageId];
|
|
3456
|
+
if (__privateGet(this, _workersEx)[payload.runner.workerId]) {
|
|
3457
|
+
const runnersEx = __privateGet(this, _workersEx)[payload.runner.workerId].runnersEx;
|
|
3458
|
+
if (runnersEx && runnersEx[payload.runner.id]) {
|
|
3459
|
+
__privateGet(this, _SyncRunnerData).call(this, runnersEx[payload.runner.id], payload.runner);
|
|
3460
|
+
}
|
|
3461
|
+
}
|
|
3456
3462
|
messageRecord.resolveMessage(retPayload);
|
|
3457
3463
|
}
|
|
3458
3464
|
} catch (error) {
|