We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have config:
Rollbar.configure do |config| config.exception_level_filters.merge!( "ApplicationJob::FrequentFailureError" => "ignore" ) end
which is not respected in AJ jobs (where they are raised)
I believe this is because (from readme):
This behavior applies to uncaught exceptions, not direct calls to Rollbar.error(), Rollbar.warning()
and in AJ plugin there is
rollbar-gem/lib/rollbar/plugins/active_job.rb
Line 6 in c85d1b7
which is a direct call.
I would expect this filtering work in AJ as well.
The text was updated successfully, but these errors were encountered:
Hey @morgoth, you are right. We should be using this:
Rollbar.error(exception, :job => self.class.name, :job_id => job_id, :use_exception_level_filters => true)
We'll fix this soon
Sorry, something went wrong.
Use :use_exception_level_filters in ActiveJob plugin
8471598
Fix #531
e7e0bf4
No branches or pull requests
I have config:
which is not respected in AJ jobs (where they are raised)
I believe this is because (from readme):
and in AJ plugin there is
rollbar-gem/lib/rollbar/plugins/active_job.rb
Line 6 in c85d1b7
which is a direct call.
I would expect this filtering work in AJ as well.
The text was updated successfully, but these errors were encountered: