Skip to content

Commit

Permalink
fix: Worker.work now uniquiets.
Browse files Browse the repository at this point in the history
  • Loading branch information
gijoehosaphat authored and jbielick committed Jul 24, 2024
1 parent 7db9c5f commit 186cd75
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ export class Worker extends EventEmitter {
*/
async work(): Promise<Worker> {
debug("work concurrency=%i", this.concurrency);
this.quieted = false;
this.execute = createExecutionChain(this.middleware, this.registry);
await this.beat();
this.pulse = setInterval(async () => {
Expand Down

0 comments on commit 186cd75

Please sign in to comment.