Skip to content

Instantly share code, notes, and snippets.

@clemens
Created June 24, 2011 09:51
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save clemens/1044518 to your computer and use it in GitHub Desktop.
Save clemens/1044518 to your computer and use it in GitHub Desktop.
Retry failed Resque jobs in Ruby
# 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