diff options
author | Jonathan Hyman <jonathan.hyman@post.harvard.edu> | 2016-11-16 15:42:31 -0500 |
---|---|---|
committer | Jonathan Hyman <jonathan.hyman@post.harvard.edu> | 2016-11-16 15:42:31 -0500 |
commit | 226b8451130ecd4448f7870da8321c87676ad3d6 (patch) | |
tree | f5e2ad31474443c6892f3ede89a208c8704b7d3a /activesupport/lib/active_support/cache | |
parent | 3b2346ea1393ad5deb049ae071116773c602ddc0 (diff) | |
download | rails-226b8451130ecd4448f7870da8321c87676ad3d6.tar.gz rails-226b8451130ecd4448f7870da8321c87676ad3d6.tar.bz2 rails-226b8451130ecd4448f7870da8321c87676ad3d6.zip |
Removes 'raw: true' from MemCacheStore#read_multi, per https://github.com/rails/rails/issues/27066.
Diffstat (limited to 'activesupport/lib/active_support/cache')
-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) |