Skip to content

Instantly share code, notes, and snippets.

@covard
Last active January 24, 2022 22:13
Show Gist options
  • Save covard/f9ece1af75c2c14fc331a27efa673f50 to your computer and use it in GitHub Desktop.
Save covard/f9ece1af75c2c14fc331a27efa673f50 to your computer and use it in GitHub Desktop.
General sidekiq info

Sidekiq


Retries

Get Error Message

retries = Sidekiq::RetrySet.new
retries.each do |r|
  puts '*-' * 100
  ap r.item['error_message']
  puts '-*' * 100
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment