From 55d122771c8e833c29f2cc49d56df52aa5998256 Mon Sep 17 00:00:00 2001 From: Jacob Cody Wimer Date: Fri, 12 Feb 2021 13:15:07 +0000 Subject: [PATCH] Had to create storage.yml for activestorage for Rails 6.1 upgrade and changed config to use mem_cache_store instead of dalli_store --- config/environments/production.rb | 2 +- config/storage.yml | 0 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 config/storage.yml diff --git a/config/environments/production.rb b/config/environments/production.rb index 51d1c8d..b3a0ce4 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -54,7 +54,7 @@ Wrestling::Application.configure do # Use a different cache store in production. # config.cache_store = :mem_cache_store - config.cache_store = :dalli_store, + config.cache_store = :mem_cache_store, (ENV["MEMCACHIER_SERVERS"] || "").split(","), {:username => ENV["MEMCACHIER_USERNAME"], :password => ENV["MEMCACHIER_PASSWORD"], diff --git a/config/storage.yml b/config/storage.yml new file mode 100644 index 0000000..e69de29