about summary refs log tree commit diff
path: root/app/lib/sidekiq_error_handler.rb
blob: ab555b1be3eb893923e7520c0051d12123abb116 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

class SidekiqErrorHandler
  BACKTRACE_LIMIT = 3

  def call(*)
    yield
  rescue Mastodon::HostValidationError
    # Do not retry
  rescue => e
    limit_backtrace_and_raise(e)
  ensure
    socket = Thread.current[:statsd_socket]
    socket&.close
    Thread.current[:statsd_socket] = nil
  end

  private

  # rubocop:disable Naming/MethodParameterName
  def limit_backtrace_and_raise(e)
    e.set_backtrace(e.backtrace.first(BACKTRACE_LIMIT))
    raise e
  end
  # rubocop:enable Naming/MethodParameterName
end