Skip to content

Commit

Permalink
fix(core): Revert change to SQLJobQueueStrategy update mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Feb 7, 2024
1 parent 1ee9151 commit a1e7730
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ export class SqlJobQueueStrategy extends PollingJobQueueStrategy implements Insp
.update()
.set(this.toRecord(job))
.where('id = :id', { id: job.id })
.andWhere('settledAt IS NULL')
.execute();
}

Expand Down

0 comments on commit a1e7730

Please sign in to comment.