-
-
Save waynehuang13/9606f195aaa359c3a87a to your computer and use it in GitHub Desktop.
Revisions
-
Clemens Kofler created this gist
Jun 24, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ # 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