1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

B #5156: Fix memcache-dalli server (#1753)

This commit is contained in:
Frederick Borges 2022-02-11 17:48:52 +01:00 committed by GitHub
parent 94574a5f89
commit c42357bf7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -224,7 +224,7 @@ when 'memcache-dalli'
use Rack::Session::Dalli,
:memcache_server => memcache_server,
:namespace => $conf[:memcache_namespace],
:cache => Dalli::Client.new
:cache => Dalli::Client.new(memcache_server, {:namespace => $conf[:memcache_namespace]})
else
STDERR.puts "Wrong value for :sessions in configuration file"
exit(-1)