Skip to content

Commit

Permalink
for consistency, put queue name before id
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcountryman committed Nov 16, 2024
1 parent d8dc087 commit 5bb7e62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -676,8 +676,8 @@ impl<T: Task> Queue<T> {
and (retry_policy).max_attempts > (
select count(*)
from underway.task_attempt
where task_id = id
and task_queue_name = $1
where task_queue_name = $1
and task_id = id
)
)
)
Expand Down

0 comments on commit 5bb7e62

Please sign in to comment.