From 2b904cb34fcc9408b49e866976eaa7e82f032184 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Wed, 14 Aug 2013 00:02:27 +0200 Subject: Fix caching when using remote redis server --- config/environments/production.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index 2e2d46c4161..e3476be8fba 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -40,7 +40,14 @@ Gitlab::Application.configure do # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) # Use a different cache store in production - config.cache_store = :redis_store + config_file = Rails.root.join('config', 'resque.yml') + + resque_url = if File.exists?(config_file) + YAML.load_file(config_file)[Rails.env] + else + "redis://localhost:6379" + end + config.cache_store = :redis_store, resque_url # Enable serving of images, stylesheets, and JavaScripts from an asset server # config.action_controller.asset_host = "http://assets.example.com" -- cgit v1.2.1