Skip to content

Commit

Permalink
Oops, fix issue with new Rack stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed Dec 11, 2011
1 parent 2961d20 commit ae9d544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rack/session/dalli.rb
Expand Up @@ -13,7 +13,7 @@ class Dalli < Abstract::ID
def initialize(app, options={})
super
mserv = @default_options[:memcache_server]
mopts = @default_options.reject{|k,v| !MemCache::DEFAULT_OPTIONS.include? k }
mopts = @default_options.reject{|k,v| !DEFAULT_OPTIONS.include? k }
@pool = options[:cache] || Dalli::Client.new(mserv, mopts)
end

Expand Down

0 comments on commit ae9d544

Please sign in to comment.