X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2Fabstract-worker.ts;h=6bf84b875622ebaece3d8b4b8dae3c637593ed68;hb=ee9f0ad39b47fe80bb08d159024dad0fae81f6c5;hp=5a61f1cf00126252d71a684e0fd57e242b3b7127;hpb=7c8ac84e422da5a4c4418b6f69094ade5ee4ff1a;p=poolifier.git diff --git a/src/worker/abstract-worker.ts b/src/worker/abstract-worker.ts index 5a61f1cf..6bf84b87 100644 --- a/src/worker/abstract-worker.ts +++ b/src/worker/abstract-worker.ts @@ -301,7 +301,9 @@ export abstract class AbstractWorker< if (this.isMain) { throw new Error('Cannot handle message to worker in main worker') } else if (message.workerId != null && message.workerId !== this.id) { - throw new Error('Message worker id does not match the worker id') + throw new Error( + `Message worker id ${message.workerId} does not match the worker id ${this.id}` + ) } else if (message.workerId === this.id) { if (message.statistics != null) { // Statistics message received