We leave the STATUS setting alone, since it's required before rails boots. The test-specific settings now live in config/settings/test.yml
7 lines
393 B
Ruby
7 lines
393 B
Ruby
# Be sure to restart your server when you modify this file.
|
|
|
|
if Settings.key?(:memcache_servers)
|
|
Rails.application.config.session_store :mem_cache_store, :memcache_server => Settings.memcache_servers, :namespace => "rails:session", :key => "_osm_session"
|
|
else
|
|
Rails.application.config.session_store :cache_store, :key => "_osm_session", :cache => ActiveSupport::Cache::MemoryStore.new
|
|
end
|