Merge dependabot/npm_and_yarn/examples/typescript/http-server-pool/fastify-worker_thr...
[poolifier.git] / src / worker / thread-worker.ts
index ec6b6a0aa65ac60adb1f089a4923894798953525..d5ce3a2f130da3efbe81f0aa0e3b3e7394033822 100644 (file)
@@ -42,7 +42,7 @@ export class ThreadWorker<
     opts: WorkerOptions = {}
   ) {
     super(
-      'worker-thread-pool:poolifier',
+      'poolifier:thread-worker',
       isMainThread,
       parentPort as MessagePort,
       taskFunctions,
@@ -90,8 +90,11 @@ export class ThreadWorker<
     this.port.postMessage({ ...message, workerId: this.id })
   }
 
-  /** @inheritDoc */
-  protected handleError (e: Error | string): string {
-    return e as string
+  /**
+   * @inheritDoc
+   * @override
+   */
+  protected handleError (error: Error | string): string {
+    return error as string
   }
 }