2018-02-24 20:16:11 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-04-28 18:47:34 +03:00
|
|
|
class Mastodon::SidekiqMiddleware
|
2020-05-10 11:30:27 +03:00
|
|
|
BACKTRACE_LIMIT = 3
|
|
|
|
|
2023-03-13 00:47:55 +02:00
|
|
|
def call(*, &block)
|
|
|
|
Chewy.strategy(:mastodon, &block)
|
2019-07-02 02:01:17 +03:00
|
|
|
rescue Mastodon::HostValidationError
|
2018-02-24 20:16:11 +02:00
|
|
|
# Do not retry
|
2020-05-10 11:30:27 +03:00
|
|
|
rescue => e
|
|
|
|
limit_backtrace_and_raise(e)
|
2019-07-02 02:01:17 +03:00
|
|
|
ensure
|
2022-04-28 18:47:34 +03:00
|
|
|
clean_up_sockets!
|
2018-02-24 20:16:11 +02:00
|
|
|
end
|
2020-05-10 11:30:27 +03:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2021-12-27 01:47:20 +02:00
|
|
|
def limit_backtrace_and_raise(exception)
|
|
|
|
exception.set_backtrace(exception.backtrace.first(BACKTRACE_LIMIT))
|
|
|
|
raise exception
|
2020-05-10 11:30:27 +03:00
|
|
|
end
|
2022-04-28 18:47:34 +03:00
|
|
|
|
|
|
|
def clean_up_sockets!
|
|
|
|
clean_up_redis_socket!
|
|
|
|
clean_up_statsd_socket!
|
|
|
|
end
|
|
|
|
|
|
|
|
def clean_up_redis_socket!
|
2022-04-29 23:43:07 +03:00
|
|
|
RedisConfiguration.pool.checkin if Thread.current[:redis]
|
2022-04-28 18:47:34 +03:00
|
|
|
Thread.current[:redis] = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def clean_up_statsd_socket!
|
|
|
|
Thread.current[:statsd_socket]&.close
|
|
|
|
Thread.current[:statsd_socket] = nil
|
|
|
|
end
|
2018-02-24 20:16:11 +02:00
|
|
|
end
|