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