X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/537cd6a52c104c909ed777a1be3cf8cf85e35396..96a00910d50931b139a1c00319b9fd46d863ca45:/config/initializers/session_store.rb diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb index 17173d536..8a0fd8f03 100644 --- a/config/initializers/session_store.rb +++ b/config/initializers/session_store.rb @@ -1,7 +1,9 @@ # Be sure to restart your server when you modify this file. if defined?(MEMCACHE_SERVERS) - OpenStreetMap::Application.config.session_store :mem_cache_store, :memcache_server => MEMCACHE_SERVERS, :namespace => "rails:session", :key => "_osm_session" + Rails.application.config.session_store :mem_cache_store, :memcache_server => MEMCACHE_SERVERS, :namespace => "rails:session", :key => "_osm_session" +elsif Rails.application.config.cache_store != :null_store + Rails.application.config.session_store :cache_store, :key => "_osm_session" else - OpenStreetMap::Application.config.session_store :cache_store, :key => '_osm_session' + Rails.application.config.session_store :cookie_store, :key => "_osm_session" end