module Sidekiq::ScheduledSet::UniqueExtension

def delete(score, job_id)

Parameters:
  • job_id (String) -- the Sidekiq JID
  • score (Integer, Float) -- the score in the scheduled set
def delete(score, job_id)
  entry = find_job(job_id)
  SidekiqUniqueJobs::Unlockable.delete!(entry.item) if super(score, job_id)
  entry
end