aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/cache.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb
index cea603e1b3..44f80dd379 100644
--- a/activesupport/lib/active_support/cache.rb
+++ b/activesupport/lib/active_support/cache.rb
@@ -331,11 +331,7 @@ module ActiveSupport
payload[:hit] = false if payload
nil
elsif entry.mismatched?(version)
- if payload
- payload[:hit] = false
- payload[:mismatch] = "#{entry.version} != #{version}"
- end
-
+ payload[:hit] = false if payload
nil
else
payload[:hit] = true if payload