@nsshunt/stsrunnerframework 2.0.23 → 2.0.24
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.
- package/dist/index.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/types/workerRegistry.d.ts.map +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4885,7 +4885,9 @@ var WorkerRegistry = class {
|
|
|
4885
4885
|
if (runnersMap) {
|
|
4886
4886
|
if (runnersMap[runnerId]) {
|
|
4887
4887
|
delete runnersMap[runnerId];
|
|
4888
|
-
|
|
4888
|
+
try {
|
|
4889
|
+
this.options.logger.debug(`DeleteRunner(): RunnerId: [${runnerId}] has been removed from this workerId: [${workerId}], Remaining Runners: [${Object.keys(worker.GetAllRunnersExMap()).length}]`);
|
|
4890
|
+
} catch (error) {}
|
|
4889
4891
|
}
|
|
4890
4892
|
}
|
|
4891
4893
|
}
|