module Sentry::Rails::ActiveJobExtensions

def already_supported_by_sentry_integration?

def already_supported_by_sentry_integration?
  Sentry.configuration.rails.skippable_job_adapters.include?(self.class.queue_adapter.class.to_s)
end

def perform_now

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