1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-24 22:45:27 +00:00
mastodon/app/lib/sidekiq_error_handler.rb

13 lines
261 B
Ruby

# frozen_string_literal: true
class SidekiqErrorHandler
def call(*)
yield
rescue Mastodon::HostValidationError
# Do not retry
ensure
socket = Thread.current[:statsd_socket]
socket&.close
Thread.current[:statsd_socket] = nil
end
end