From 186cd7506342244b239762f24566f0d22aa47fda Mon Sep 17 00:00:00 2001 From: Joe Leonard Date: Tue, 16 Jul 2024 11:36:24 -0300 Subject: [PATCH] fix: Worker.work now uniquiets. --- src/worker.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/worker.ts b/src/worker.ts index 69225d8..619d771 100644 --- a/src/worker.ts +++ b/src/worker.ts @@ -151,6 +151,7 @@ export class Worker extends EventEmitter { */ async work(): Promise { debug("work concurrency=%i", this.concurrency); + this.quieted = false; this.execute = createExecutionChain(this.middleware, this.registry); await this.beat(); this.pulse = setInterval(async () => {