Fix reading of redis namespace from config

Changed default to nil to not screw users running develop already
This commit is contained in:
Jonne Haß 2013-05-05 16:12:22 +02:00
parent fdff9c8b8a
commit c41db6634c
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ defaults:
require_ssl: true
single_process_mode: false
sidekiq:
namespace: "diaspora"
namespace:
concurrency: 5
retry: 10
backtrace: 15

View file

@ -93,7 +93,7 @@ module Configuration
redis_options[:url] = redis_url
end
redis_options[:namespace] = AppConfig.environment.sidekiq_namespace.get
redis_options[:namespace] = AppConfig.environment.sidekiq.namespace.get
redis_options
end