Skip to content

Instantly share code, notes, and snippets.

@sankalpk
Created September 1, 2020 21:19
Show Gist options
  • Save sankalpk/03ec05e8feabbd1bbf7f161f1a642135 to your computer and use it in GitHub Desktop.
Save sankalpk/03ec05e8feabbd1bbf7f161f1a642135 to your computer and use it in GitHub Desktop.
Delete Sidekiq Retry Jobs
query = Sidekiq::RetrySet.new
query.each do |job|
job.delete if job.jid == 'abcdef1234567890'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment