Skip to content

Instantly share code, notes, and snippets.

@pivotal-casebook
Created August 3, 2012 20:50
Show Gist options
  • Save pivotal-casebook/3251389 to your computer and use it in GitHub Desktop.
Save pivotal-casebook/3251389 to your computer and use it in GitHub Desktop.
Find all attachment ids for failed RecreateThumbnailJob jobs in resque
$('a.backtrace').map(function(){
var t = $(this).text();
if (/^Interrupted system call/.test(t)){
return parseInt(t.split(' ')[6].split('/')[9]);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment