ee9fc12024
1 2 3 4 5 6 7 8 9
# frozen_string_literal: true class AbortBeforeEnqueueJob < ActiveJob::Base before_enqueue { throw(:abort) } def perform raise "This should never be called" end end