Skip to content

Instantly share code, notes, and snippets.

@spikegrobstein
Created December 11, 2012 23:35
Show Gist options
  • Save spikegrobstein/4263383 to your computer and use it in GitHub Desktop.
Save spikegrobstein/4263383 to your computer and use it in GitHub Desktop.
iterate through resque failed jobs
1.upto(Resque::Failure.count) do |i|
job = Resque::Failure.all(i)
# inspect failed job
args = job['payload']['args']
klass = job['payload']['class']
end
@pizza-planet
Copy link

hey, this is awesome. thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment