From d587a268fdcee4ab8795fe4f03dff683e668ae15 Mon Sep 17 00:00:00 2001 From: Claire Date: Sun, 27 Nov 2022 20:37:37 +0100 Subject: Add logging for Rails cache timeouts (#21667) * Reduce redis cache store connect timeout from default 20 seconds to 5 seconds * Log cache store errors --- lib/mastodon/redis_config.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'lib') diff --git a/lib/mastodon/redis_config.rb b/lib/mastodon/redis_config.rb index 98dc4788d..3522fa11e 100644 --- a/lib/mastodon/redis_config.rb +++ b/lib/mastodon/redis_config.rb @@ -37,6 +37,7 @@ REDIS_CACHE_PARAMS = { namespace: cache_namespace, pool_size: Sidekiq.server? ? Sidekiq.options[:concurrency] : Integer(ENV['MAX_THREADS'] || 5), pool_timeout: 5, + connect_timeout: 5, }.freeze REDIS_SIDEKIQ_PARAMS = { -- cgit