debian-mirror-gitlab/app/workers/concerns/exception_backtrace.rb
2018-11-08 19:23:39 +05:30

11 lines
217 B
Ruby

# frozen_string_literal: true
# Concern for enabling a few lines of exception backtraces in Sidekiq
module ExceptionBacktrace
extend ActiveSupport::Concern
included do
sidekiq_options backtrace: 5
end
end