summaryrefslogtreecommitdiff
path: root/app/workers/concerns/exception_backtrace.rb
blob: ea0f1f8d19ba523d5ba9e2f19105cd1e404ded2f (plain)
1
2
3
4
5
6
7
8
# Concern for enabling a few lines of exception backtraces in Sidekiq
module ExceptionBacktrace
  extend ActiveSupport::Concern

  included do
    sidekiq_options backtrace: 5
  end
end