Sha256: 684b56c02323494e3b9e39e30e7ebf417e5c45dc7a7c1d0cbf33d0b6b2cc57af

Contents?: true

Size: 1.49 KB

Versions: 46

Compression:

Stored size: 1.49 KB

Contents

module Delayed
  module Plugins
    # Provides integration with Delayed Job.
    # rubocop:disable Lint/RescueException
    class Airbrake < ::Delayed::Plugin
      callbacks do |lifecycle|
        lifecycle.around(:invoke_job) do |job, *args, &block|
          begin
            # Forward the call to the next callback in the callback chain
            block.call(job, *args)
          rescue Exception => exception
            params = job.as_json

            # If DelayedJob is used through ActiveJob, it contains extra info.
            if job.payload_object.respond_to?(:job_data)
              params[:active_job] = job.payload_object.job_data
              job_class = job.payload_object.job_data['job_class']
            end

            ::Airbrake.notify(exception, params) do |notice|
              notice[:context][:component] = 'delayed_job'
              notice[:context][:action] = job_class || job.payload_object.class.name
            end

            raise exception
          end
        end
      end
    end
    # rubocop:enable Lint/RescueException
  end
end

if RUBY_ENGINE == 'jruby' && defined?(Delayed::Backend::ActiveRecord::Job)
  # Workaround against JRuby bug:
  # https://github.com/jruby/jruby/issues/3338
  # rubocop:disable Style/ClassAndModuleChildren
  class Delayed::Backend::ActiveRecord::Job
    alias old_to_ary to_ary

    def to_ary
      old_to_ary || [self]
    end
  end
  # rubocop:enable Style/ClassAndModuleChildren
end

Delayed::Worker.plugins << Delayed::Plugins::Airbrake

Version data entries

46 entries across 46 versions & 1 rubygems

Version Path
airbrake-9.5.5 lib/airbrake/delayed_job.rb
airbrake-9.5.4 lib/airbrake/delayed_job.rb
airbrake-9.5.3 lib/airbrake/delayed_job.rb
airbrake-9.5.2 lib/airbrake/delayed_job.rb
airbrake-9.5.1 lib/airbrake/delayed_job.rb
airbrake-9.5.0 lib/airbrake/delayed_job.rb
airbrake-9.4.5 lib/airbrake/delayed_job.rb
airbrake-9.4.4 lib/airbrake/delayed_job.rb
airbrake-9.4.3 lib/airbrake/delayed_job.rb
airbrake-9.4.2 lib/airbrake/delayed_job.rb
airbrake-9.4.1 lib/airbrake/delayed_job.rb
airbrake-9.4.0 lib/airbrake/delayed_job.rb
airbrake-9.3.0 lib/airbrake/delayed_job.rb
airbrake-9.2.2 lib/airbrake/delayed_job.rb
airbrake-9.2.1 lib/airbrake/delayed_job.rb
airbrake-9.2.0 lib/airbrake/delayed_job.rb
airbrake-9.1.0 lib/airbrake/delayed_job.rb
airbrake-9.0.2 lib/airbrake/delayed_job.rb
airbrake-9.0.1 lib/airbrake/delayed_job.rb
airbrake-9.0.0 lib/airbrake/delayed_job.rb