Skip to content

Commit

Permalink
Merge pull request OCA#2 from yibudak/fix-issue585
Browse files Browse the repository at this point in the history
[FIX] queue_job: OCA#585
  • Loading branch information
yibudak authored Nov 21, 2023
2 parents de71cd5 + 9e35261 commit ef829f4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions queue_job/models/queue_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,9 @@ def autovacuum(self):
"|",
("date_done", "<=", deadline),
("date_cancelled", "<=", deadline),
"|",
("channel", "=", channel.complete_name),
("channel", "ilike", channel.complete_name + ".%"),
],
limit=1000,
)
Expand Down

0 comments on commit ef829f4

Please sign in to comment.