lib/raven/integrations/sidekiq/error_handler.rb in sentry-raven-3.1.0 vs lib/raven/integrations/sidekiq/error_handler.rb in sentry-raven-3.1.1
- old
+ new
@@ -1,13 +1,13 @@
-require 'raven/integrations/sidekiq/context_filter'
+require 'raven/utils/context_filter'
module Raven
module Sidekiq
class ErrorHandler
SIDEKIQ_NAME = "Sidekiq".freeze
def call(ex, context)
- context = ContextFilter.filter_context(context)
+ context = Utils::ContextFilter.filter_context(context)
Raven.context.transaction.push transaction_from_context(context)
Raven.capture_exception(
ex,
:message => ex.message,
:extra => { :sidekiq => context }