Module: SlackSender::DeliveryAxn::AsyncConfiguration

Included in:
SlackSender::DeliveryAxn
Defined in:
lib/slack_sender/delivery_axn/async_configuration.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.extended(base) ⇒ Object



6
7
8
# File 'lib/slack_sender/delivery_axn/async_configuration.rb', line 6

def self.extended(base)
  base._configure_async_backend
end

Instance Method Details

#_configure_async_backendObject



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/slack_sender/delivery_axn/async_configuration.rb', line 10

def _configure_async_backend
  # Only report to axn's on_exception when retries are exhausted (not on each attempt or ratelimit retries)
  async_exception_reporting :only_exhausted

  backend = SlackSender.config.async_backend

  # No backend configured - will raise error when deliver is called
  return unless backend

  # Backend is already validated by Configuration#async_backend=
  case backend
  when :sidekiq
    # Configure Sidekiq-specific retry logic (including skipping retries for InvalidArgumentsError).
    # On axn's current Sidekiq adapter the action is not itself a Sidekiq::Job; sidekiq_retry_in is a
    # worker-subclass hook, so it must be declared inside the `async :sidekiq do…end` block (the block
    # is class_eval'd onto the generated AxnSidekiqWorker).
    async :sidekiq, retry: 5, dead: false do
      sidekiq_retry_in do |_count, exception|
        # Don't retry invalid arguments (incl. an InvalidArgumentsError raised from a
        # preprocess lambda, which the worker re-raises wrapped in a PreprocessingError).
        next :discard if SlackSender::Util.invalid_arguments_error?(exception)

        SlackSender::Util.parse_retry_delay_from_exception(exception)
      end
    end
  when :active_job
    async :active_job do
      # ActiveJob reads rescue handlers bottom-to-top (last declared is matched first), so the
      # catch-all retry_on StandardError MUST be declared before the specific discards below —
      # otherwise it shadows them and permanent errors burn all attempts.
      retry_on StandardError, wait: :exponentially_longer, attempts: 5 do |_job, exception|
        retry_behavior = SlackSender::Util.parse_retry_delay_from_exception(exception)
        next if retry_behavior == :discard

        # If retry_behavior is a number (seconds), schedule retry with that delay
        retry_job wait: retry_behavior.seconds if retry_behavior.is_a?(Numeric) && retry_behavior.positive?
        # Otherwise, let ActiveJob use its default retry behavior
      end

      # Skip retries for invalid arguments - these will never succeed. Declared after retry_on
      # so this specific handler takes precedence over the catch-all above.
      discard_on SlackSender::InvalidArgumentsError

      # An InvalidArgumentsError raised from a preprocess lambda (e.g. an unknown channel)
      # arrives wrapped in a PreprocessingError, which discard_on can't match by cause. Unwrap
      # only those to the InvalidArgumentsError so the discard_on above catches them (no
      # retries); every other preprocessing error propagates unchanged to retry_on/reporting,
      # mirroring the Sidekiq path (Util.invalid_arguments_error?).
      around_perform do |_job, block|
        block.call
      rescue Axn::ContractViolation::PreprocessingError => e
        raise SlackSender::Util.invalid_arguments_error?(e) ? e.cause : e
      end
    end
  end
end