Skip to content

Commit

Permalink
fix(worker): start stalled check timer
Browse files Browse the repository at this point in the history
  • Loading branch information
manast committed Feb 26, 2023
1 parent b1d2dc8 commit 4763be0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ export class Worker<
return;
}

this.runStalledJobsCheck();
await this.startStalledCheckTimer();

const jobsInProgress = {};
this.extendLocksTimer = setInterval(async () => {
Expand Down

2 comments on commit 4763be0

@tayclark
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@manast how can we get this fix into v1? I believe this is causing stalled jobs to not emit an event and also not be retried

@manast
Copy link
Contributor Author

@manast manast commented on 4763be0 Mar 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tayclark what do you mean with v1 ?

Please sign in to comment.