X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/6a3cadb52d010b333a4acea8942bc4c13394e236..2d26d1f7644f0e1a4041339bad4c4570806fcac7:/config/initializers/openid.rb?ds=sidebyside diff --git a/config/initializers/openid.rb b/config/initializers/openid.rb index 966164b3e..2a6de16b2 100644 --- a/config/initializers/openid.rb +++ b/config/initializers/openid.rb @@ -1 +1,7 @@ -OpenIdAuthentication.store = :file +if defined?(MEMCACHE_SERVERS) + require "openid/store/memcache" + + OpenIdAuthentication.store = OpenID::Store::Memcache.new(Dalli::Client.new(MEMCACHE_SERVERS, :namespace => "rails")) +else + OpenIdAuthentication.store = :file +end