mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Fix statsd UDP sockets not being cleaned up in Sidekiq (#11230)
This commit is contained in:
parent
bc60d794f8
commit
1a747f7020
@ -3,9 +3,11 @@
|
|||||||
class SidekiqErrorHandler
|
class SidekiqErrorHandler
|
||||||
def call(*)
|
def call(*)
|
||||||
yield
|
yield
|
||||||
rescue Mastodon::HostValidationError => e
|
rescue Mastodon::HostValidationError
|
||||||
Rails.logger.error "#{e.class}: #{e.message}"
|
|
||||||
Rails.logger.error e.backtrace.join("\n")
|
|
||||||
# Do not retry
|
# Do not retry
|
||||||
|
ensure
|
||||||
|
socket = Thread.current[:statsd_socket]
|
||||||
|
socket&.close
|
||||||
|
Thread.current[:statsd_socket] = nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user