diff --git a/activesupport/lib/active_support/cache/mem_cache_store.rb b/activesupport/lib/active_support/cache/mem_cache_store.rb index 3fd9f37cce..71b28ca6f5 100644 --- a/activesupport/lib/active_support/cache/mem_cache_store.rb +++ b/activesupport/lib/active_support/cache/mem_cache_store.rb @@ -17,7 +17,7 @@ module ActiveSupport addresses = addresses.flatten addresses = ["localhost"] if addresses.empty? @addresses = addresses - @data = MemCache.new(*addresses) + @data = MemCache.new(addresses) end def read(key, options = nil)