Don't report Coverband errors to Rollbar

pull/16021/head
Alberto Miedes Garcés 4 years ago
parent 13366d2028
commit 6fc6549feb

@ -28,6 +28,7 @@ sudo make install
- `MessageBroker` now grabs the subscription name from `Config#central_subscription_name` [#16008](https://github.com/CartoDB/cartodb/pull/16008)
- Fix an issue with autoloading of a model class [#16011](https://github.com/CartoDB/cartodb/pull/16011)
- Propagate request_id in MessageBroker logs [#16006](https://github.com/CartoDB/cartodb/pull/16006)
- Don't report Coverband errors to Rollbar [#16021](https://github.com/CartoDB/cartodb/pull/16021)
4.44.0 (2020-11-20)
-------------------

@ -23,8 +23,10 @@ Rollbar.configure do |config|
)
config.before_process << proc do |options|
raise Rollbar::Ignore if options.is_a?(Hash) &&
options[:message]&.include?('ActionController::RoutingError')
raise Rollbar::Ignore if options.is_a?(Hash) && (
options[:message]&.include?('ActionController::RoutingError') ||
options[:message] == 'coverage failed to store'
)
end
end

Loading…
Cancel
Save