Skip to content

Commit e1f90a3

Browse files
authored
Merge pull request rails#43171 from yykamei/replace-location-with-request-in-process_action.action_controller
Replace :location with :request in process_action.action_controller [ci-skip]
2 parents 7595c92 + 92ac51b commit e1f90a3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

guides/source/active_support_instrumentation.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ Within the Ruby on Rails framework, there are a number of hooks provided for com
216216
| `:method` | HTTP request verb |
217217
| `:path` | Request path |
218218
| `:request` | The `ActionDispatch::Request` |
219+
| `:response` | The `ActionDispatch::Response` |
219220
| `:status` | HTTP status code |
220-
| `:location` | Location response header |
221221
| `:view_runtime` | Amount spent in view in ms |
222222
| `:db_runtime` | Amount spent executing database queries in ms |
223223

@@ -231,6 +231,7 @@ Within the Ruby on Rails framework, there are a number of hooks provided for com
231231
method: "GET",
232232
path: "/posts",
233233
request: #<ActionDispatch::Request:0x00007ff1cb9bd7b8>,
234+
response: #<ActionDispatch::Response:0x00007f8521841ec8>,
234235
status: 200,
235236
view_runtime: 46.848,
236237
db_runtime: 0.157

0 commit comments

Comments
 (0)