diff options
author | Vipul A M <vipulnsward@gmail.com> | 2013-03-19 22:09:47 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2013-03-19 22:09:47 +0530 |
commit | ca9fc5aea7c78871381149b7650fc16a86e8153c (patch) | |
tree | 7ff465ee0a3343a926a72d5ee6ee421faa5a2e19 | |
parent | 7d659ae9cd52cc0f752c09341989eb453dc0c536 (diff) | |
download | rails-ca9fc5aea7c78871381149b7650fc16a86e8153c.tar.gz rails-ca9fc5aea7c78871381149b7650fc16a86e8153c.tar.bz2 rails-ca9fc5aea7c78871381149b7650fc16a86e8153c.zip |
remove unused payloads in blocks in caching instrumentation
-rw-r--r-- | activesupport/lib/active_support/cache.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb index edbe697962..6bfac15289 100644 --- a/activesupport/lib/active_support/cache.rb +++ b/activesupport/lib/active_support/cache.rb @@ -344,7 +344,7 @@ module ActiveSupport # Options are passed to the underlying cache implementation. def write(name, value, options = nil) options = merged_options(options) - instrument(:write, name, options) do |payload| + instrument(:write, name, options) do entry = Entry.new(value, options) write_entry(namespaced_key(name, options), entry, options) end @@ -355,7 +355,7 @@ module ActiveSupport # Options are passed to the underlying cache implementation. def delete(name, options = nil) options = merged_options(options) - instrument(:delete, name) do |payload| + instrument(:delete, name) do delete_entry(namespaced_key(name, options), options) end end @@ -365,7 +365,7 @@ module ActiveSupport # Options are passed to the underlying cache implementation. def exist?(name, options = nil) options = merged_options(options) - instrument(:exist?, name) do |payload| + instrument(:exist?, name) do entry = read_entry(namespaced_key(name, options), options) entry && !entry.expired? end |