Skip to content

Instantly share code, notes, and snippets.

@maciejkowalski
Forked from PatrickTulskie/resque_retry.rb
Created April 10, 2013 14:33
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 maciejkowalski/5355156 to your computer and use it in GitHub Desktop.
Save maciejkowalski/5355156 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