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 --- config/initializers/cache_logging.rb | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 config/initializers/cache_logging.rb (limited to 'config/initializers') diff --git a/config/initializers/cache_logging.rb b/config/initializers/cache_logging.rb new file mode 100644 index 000000000..08aa80742 --- /dev/null +++ b/config/initializers/cache_logging.rb @@ -0,0 +1,3 @@ +# Log cache errors with Rail's logger +# This used to be the default in old Rails versions: https://github.com/rails/rails/commit/7fcf8590e788cef8b64cc266f75931c418902ca9#diff-f0748f0be8a653eea13369ebb1cadabcad71ede7cfaf20282447e64329817befL86 +Rails.cache.logger = Rails.logger -- cgit