diff options
author | Matthew Draper <matthew@trebex.net> | 2017-02-20 02:39:43 +1030 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-20 02:39:43 +1030 |
commit | 978e097375c17bf694374792b5f33b5fc6c9f4b5 (patch) | |
tree | 63b56090f1beac29cb5e0745b685ce5c60020694 /actionpack/lib/abstract_controller/caching/fragments.rb | |
parent | e51572dce00c5f011f019397984ed8e82d94fc84 (diff) | |
parent | c61488b4adf987979e229ebcfb3ed78814efd32a (diff) | |
download | rails-978e097375c17bf694374792b5f33b5fc6c9f4b5.tar.gz rails-978e097375c17bf694374792b5f33b5fc6c9f4b5.tar.bz2 rails-978e097375c17bf694374792b5f33b5fc6c9f4b5.zip |
Merge pull request #28069 from st0012/change-back-frozen-string
Unfreeze interpolated string because it's unnecessary.
Diffstat (limited to 'actionpack/lib/abstract_controller/caching/fragments.rb')
-rw-r--r-- | actionpack/lib/abstract_controller/caching/fragments.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/abstract_controller/caching/fragments.rb b/actionpack/lib/abstract_controller/caching/fragments.rb index 13fa2b393d..c85b4adba1 100644 --- a/actionpack/lib/abstract_controller/caching/fragments.rb +++ b/actionpack/lib/abstract_controller/caching/fragments.rb @@ -136,7 +136,7 @@ module AbstractController def instrument_fragment_cache(name, key) # :nodoc: payload = instrument_payload(key) - ActiveSupport::Notifications.instrument("#{name}.#{instrument_name}".freeze, payload) { yield } + ActiveSupport::Notifications.instrument("#{name}.#{instrument_name}", payload) { yield } end end end |