Merge pull request #43171 from yykamei/replace-location-with-request-in-process_action.action_controller

Replace :location with :request in process_action.action_controller

[ci-skip]
This commit is contained in:
Ryuta Kamizono 2021-09-07 05:04:38 +09:00 committed by GitHub
commit e1f90a30a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -216,8 +216,8 @@ Within the Ruby on Rails framework, there are a number of hooks provided for com
| `:method` | HTTP request verb |
| `:path` | Request path |
| `:request` | The `ActionDispatch::Request` |
| `:response` | The `ActionDispatch::Response` |
| `:status` | HTTP status code |
| `:location` | Location response header |
| `:view_runtime` | Amount spent in view in ms |
| `:db_runtime` | Amount spent executing database queries in ms |
@ -231,6 +231,7 @@ Within the Ruby on Rails framework, there are a number of hooks provided for com
method: "GET",
path: "/posts",
request: #<ActionDispatch::Request:0x00007ff1cb9bd7b8>,
response: #<ActionDispatch::Response:0x00007f8521841ec8>,
status: 200,
view_runtime: 46.848,
db_runtime: 0.157