We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a803cf8 commit 2d2621cCopy full SHA for 2d2621c
sentry-rails/lib/sentry/rails/configuration.rb
@@ -176,6 +176,7 @@ def initialize
176
@enable_db_query_source = true
177
@db_query_source_threshold_ms = 100
178
@active_support_logger_subscription_items = Sentry::Rails::ACTIVE_SUPPORT_LOGGER_SUBSCRIPTION_ITEMS_DEFAULT.dup
179
+ @active_job_report_after_job_retries = false
180
end
181
182
sentry-rails/spec/sentry/rails/configuration_spec.rb
@@ -59,4 +59,10 @@ class MySubscriber; end
59
expect(subject.active_support_logger_subscription_items["foo"]).to include(:bar)
60
61
62
+
63
+ describe "#active_job_report_after_job_retries" do
64
+ it "has correct default value" do
65
+ expect(subject.active_job_report_after_job_retries).to eq(false)
66
+ end
67
68
0 commit comments