From 223c3931717d09017975f18e903683a3d76e1b2d Mon Sep 17 00:00:00 2001 From: Matchu Date: Thu, 3 Aug 2023 18:21:07 -0700 Subject: [PATCH] Oops, fix syntax bug in production.rb Oh dang I messed this up very many commits ago, but yeah uhh the production.rb config just fully wasn't executing, oops! Fixed! --- 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 8f86fdaa..f812d4b1 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -32,7 +32,7 @@ Rails.application.configure do # config.logger = SyslogLogger.new # Use a different cache store in production - config.cache_store = :mem_cache_store, namespace: "openneo-impress-rails" + config.cache_store = :mem_cache_store, { namespace: "openneo-impress-rails" } # Disable Rails's static asset server # In production, Apache or nginx will already do this