Module: Sentry::Resque

Extended by:
Integrable
Defined in:
lib/sentry-resque.rb,
lib/sentry/resque.rb,
lib/sentry/resque/version.rb,
lib/sentry/resque/configuration.rb

Defined Under Namespace

Classes: Configuration, Railtie, SentryReporter

Constant Summary collapse

VERSION =
"5.22.1"

Instance Method Summary collapse

Instance Method Details

#performObject



7
8
9
10
11
12
13
14
15
# File 'lib/sentry/resque.rb', line 7

def perform
  if Sentry.initialized?
    SentryReporter.record(queue, worker, payload) do
      super
    end
  else
    super
  end
end