mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 21:43:15 -08:00
13 lines
261 B
Ruby
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
|