class Sidekiq::RetrySet


See the API wiki page for usage notes and examples.
and deleting them from the retry queue.
example where I’m selecting all jobs of a certain type
Based on this, you can search/filter for jobs. Here’s an
The set of retries within Sidekiq.
#

def initialize

def initialize
  super "retry"
end

def kill_all

Kills all jobs pending within the retry set.
def kill_all
  each(&:kill) while size > 0
end

def retry_all

Enqueues all jobs pending within the retry set.
def retry_all
  each(&:retry) while size > 0
end