Skip to content

Instantly share code, notes, and snippets.

@padi
Forked from PatrickTulskie/resque_retry.rb
Created January 31, 2014 03:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save padi/8726127 to your computer and use it in GitHub Desktop.
Save padi/8726127 to your computer and use it in GitHub Desktop.
# inspired by http://ariejan.net/2010/08/23/resque-how-to-requeue-failed-jobs
# retry all failed Resque jobs except the ones that have already been retried
# This is, for instance, useful if you have already retried some jobs via the web interface.
Resque::Failure.count.times do |i|
Resque::Failure.requeue(i) unless Resque::Failure.all(i, 1)['retried_at'].present?
end
# retry all :)
Resque::Failure.count.times do |i|
Resque::Failure.requeue(i)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment