module Sentry::Rails::ActiveJobExtensions

def perform_now

def perform_now
  if !Sentry.initialized? || already_supported_by_sentry_integration?
    super
  else
    SentryReporter.record(self) do
      super
    end
  end
end