From 9eccb3d07e1b536c998674e0d74eccf4f35105c2 Mon Sep 17 00:00:00 2001
From: Taico Aerts <t.v.aerts@tudelft.nl>
Date: Fri, 9 Sep 2022 17:39:40 +0200
Subject: [PATCH] Use fully qualified name for redis

---
 config/environments/production.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/environments/production.rb b/config/environments/production.rb
index ae08b2525..5fef1dc82 100644
--- a/config/environments/production.rb
+++ b/config/environments/production.rb
@@ -60,7 +60,7 @@ Rails.application.configure do
 
   # Use a different cache store in production.
   config.cache_store = QPixel::NamespacedEnvCache.new(
-    RedisCacheStore.new(url: 'redis://localhost:6379/1')
+    ActiveSupport::Cache::RedisCacheStore.new(url: 'redis://localhost:6379/1')
   )
 
   # Use a real queuing backend for Active Job (and separate queues per environment).
-- 
GitLab