sidekiq-unique-jobs icon indicating copy to clipboard operation
sidekiq-unique-jobs copied to clipboard

Changelogs are not ordered

Open anyayunli opened this issue 3 years ago • 1 comments

Describe the bug You can see from my screenshot, that recent jobs appeared randomly in the log Screen Shot 2021-11-12 at 9 14 34 AM

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.

anyayunli avatar Nov 12 '21 17:11 anyayunli

I will have a look shortly.

mhenrixon avatar Nov 13 '21 15:11 mhenrixon