class SidekiqUniqueJobs::OnConflict::Reschedule

def call

This will mess up sidekiq stats because a new job is created
Create a new job from the current one.
def call
  worker_class&.perform_in(5, *item[ARGS]) if sidekiq_worker_class?
end