From c6798706ed1b35dfb0073e4ba564c248be4772b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Mata?= Date: Thu, 13 Nov 2025 23:37:03 +0100 Subject: [PATCH] No CACHE_REDIS_URL used anywhere else (#323) --- config/environments/production.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index 671b5239f..347a18617 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -69,8 +69,8 @@ Rails.application.configure do # want to log everything, set the level to "debug". config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info") - if ENV["CACHE_REDIS_URL"].present? - config.cache_store = :redis_cache_store, { url: ENV["CACHE_REDIS_URL"] } + if ENV["REDIS_URL"].present? + config.cache_store = :redis_cache_store, { url: ENV["REDIS_URL"] } end config.action_mailer.perform_caching = false