Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/que/sql.rb
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ module Que
AND run_at <= now()
AND retryable = true
AND job_id >= $2
ORDER BY priority, run_at, job_id
ORDER BY priority, job_id, run_at
FOR UPDATE SKIP LOCKED
LIMIT 1
},
Expand Down
Loading