Sha256: 816445cef14e287631238c9af3100dade41a378cf8128a436d2d223dec5fc657
Contents?: true
Size: 595 Bytes
Versions: 31
Compression:
Stored size: 595 Bytes
Contents
module Sentry class Configuration attr_reader :sidekiq add_post_initialization_callback do @sidekiq = Sentry::Sidekiq::Configuration.new @excluded_exceptions = @excluded_exceptions.concat(Sentry::Sidekiq::IGNORE_DEFAULT) end end module Sidekiq IGNORE_DEFAULT = ["Sidekiq::JobRetry::Skip"] class Configuration # Set this option to true if you want Sentry to only capture the last job # retry if it fails. attr_accessor :report_after_job_retries def initialize @report_after_job_retries = false end end end end
Version data entries
31 entries across 31 versions & 1 rubygems