X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2Fabstract-worker.ts;h=ebbefc75ba4cc8c4e09bcc3073e372085466c181;hb=refs%2Fheads%2Fmaster;hp=ec77ccab8d68c7990339b9331cf6fd4903a7d1fe;hpb=f22545899538e05c24ec929bbc16444b7bc23cb0;p=poolifier.git diff --git a/src/worker/abstract-worker.ts b/src/worker/abstract-worker.ts index ec77ccab..ebbefc75 100644 --- a/src/worker/abstract-worker.ts +++ b/src/worker/abstract-worker.ts @@ -78,7 +78,6 @@ export abstract class AbstractWorker< /** * Handler id of the `activeInterval` worker activity check. */ - // eslint-disable-next-line no-undef protected activeInterval?: NodeJS.Timeout /** @@ -378,15 +377,16 @@ export abstract class AbstractWorker< response = { status: false, error: new Error('Unknown task operation') } break } + const { status, error } = response this.sendToMainWorker({ taskFunctionOperation, - taskFunctionOperationStatus: response.status, + taskFunctionOperationStatus: status, taskFunctionProperties, - ...(!response.status && - response.error != null && { + ...(!status && + error != null && { workerError: { name: taskFunctionProperties.name, - message: this.handleError(response.error as Error | string), + message: this.handleError(error as Error | string), }, }), })