sidekiq-unique-jobs
sidekiq-unique-jobs copied to clipboard
Changelogs are not ordered
Describe the bug
You can see from my screenshot, that recent jobs appeared randomly in the log
Expected behavior Changelogs should be ordered by timestamp
Current behavior Changelogs are not ordered by timestamp
Worker class
class MyWorker
include Sidekiq::Worker
sidekiq_options lock: :until_and_while_executing, queue: :low
def perform(args); end
def self.lock_args(args)
# the way you consider unique arguments
end
end
Additional context Add any other context about the problem here.
I will have a look shortly.