Remove unused instrumentation hooks from action_controller

Instrumentation hooks for `write_page.action_controller` and
`expire_page.action_controller` seem to be removed
in https://github.com/rails/rails/pull/7833.
So, subscribers for them are no longer necessary.
This commit is contained in:
Yutaka Kamei 2021-10-03 21:23:42 +09:00
parent c2b083df91
commit d4de20e5c2
No known key found for this signature in database
GPG Key ID: B4282A48C22883EE
2 changed files with 1 additions and 26 deletions

View File

@ -62,8 +62,7 @@ module ActionController
end
end
%w(write_fragment read_fragment exist_fragment?
expire_fragment expire_page write_page).each do |method|
%w(write_fragment read_fragment exist_fragment? expire_fragment).each do |method|
class_eval <<-METHOD, __FILE__, __LINE__ + 1
def #{method}(event)
return unless logger.info? && ActionController::Base.enable_fragment_cache_logging

View File

@ -156,30 +156,6 @@ Within the Ruby on Rails framework, there are a number of hooks provided for com
}
```
#### write_page.action_controller
| Key | Value |
| ------- | ----------------- |
| `:path` | The complete path |
```ruby
{
path: '/users/1'
}
```
#### expire_page.action_controller
| Key | Value |
| ------- | ----------------- |
| `:path` | The complete path |
```ruby
{
path: '/users/1'
}
```
#### start_processing.action_controller
| Key | Value |