1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Removes 'raw: true' from MemCacheStore#read_multi, per https://github.com/rails/rails/issues/27066.

This commit is contained in:
Jonathan Hyman 2016-11-16 15:42:31 -05:00
parent 3b2346ea13
commit 226b845113

View file

@ -97,7 +97,7 @@ module ActiveSupport
options = merged_options(options)
keys_to_names = Hash[names.map { |name| [normalize_key(name, options), name] }]
raw_values = @data.get_multi(keys_to_names.keys, raw: true)
raw_values = @data.get_multi(keys_to_names.keys)
values = {}
raw_values.each do |key, value|
entry = deserialize_entry(value)