X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2Fcluster-worker.ts;h=eedf13bd9265cb30b6d7cd689c42e2c517367acd;hb=76ae94ffbe0d293daee778f0e885866242059450;hp=05fe25343acc736f53085947e551e3869486bf5f;hpb=67f3f2d6cb8f915ec71f81c4533ab80a6c6a6f0f;p=poolifier.git diff --git a/src/worker/cluster-worker.ts b/src/worker/cluster-worker.ts index 05fe2534..eedf13bd 100644 --- a/src/worker/cluster-worker.ts +++ b/src/worker/cluster-worker.ts @@ -32,8 +32,7 @@ export class ClusterWorker< taskFunctions: TaskFunction | TaskFunctions, opts: WorkerOptions = {} ) { - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - super(cluster.isPrimary, cluster.worker!, taskFunctions, opts) + super(cluster.isPrimary, cluster.worker, taskFunctions, opts) } /** @inheritDoc */ @@ -63,6 +62,9 @@ export class ClusterWorker< protected readonly sendToMainWorker = ( message: MessageValue ): void => { - this.getMainWorker().send({ ...message, workerId: this.id }) + this.getMainWorker().send({ + ...message, + workerId: this.id + } satisfies MessageValue) } }