Created
March 24, 2015 15:10
-
-
Save jfrost/74c47696da45c5e86f2f to your computer and use it in GitHub Desktop.
output the job info from failed resque jobs
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 characters
Resque::Failure.each { |idx, f| puts f } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Then if you need just the args, you could do something like:
Resque::Failure.each { |idx, f| puts f["payload"]["args"] }