mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #27070 from jonhyman/patch-raw-true
Removes 'raw: true' from MemCacheStore#read_multi
This commit is contained in:
commit
76c273868e
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue