diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2016-11-17 18:18:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-17 18:18:34 -0500 |
commit | 76c273868e097013b53e8f0c57478febec36a2b3 (patch) | |
tree | 7a11e034556ac8e8e522bcf10af9592beab513ff /activesupport | |
parent | 7a3be90dce82031952e9abe07d9de7aedf1cb521 (diff) | |
parent | 226b8451130ecd4448f7870da8321c87676ad3d6 (diff) | |
download | rails-76c273868e097013b53e8f0c57478febec36a2b3.tar.gz rails-76c273868e097013b53e8f0c57478febec36a2b3.tar.bz2 rails-76c273868e097013b53e8f0c57478febec36a2b3.zip |
Merge pull request #27070 from jonhyman/patch-raw-true
Removes 'raw: true' from MemCacheStore#read_multi
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/cache/mem_cache_store.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/cache/mem_cache_store.rb b/activesupport/lib/active_support/cache/mem_cache_store.rb index 15f82317bd..e99d65bdf2 100644 --- a/activesupport/lib/active_support/cache/mem_cache_store.rb +++ b/activesupport/lib/active_support/cache/mem_cache_store.rb @@ -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) |