We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d4b5ea commit fe20a13Copy full SHA for fe20a13
1 file changed
cop/development/trace_methods_cop.rb
@@ -72,7 +72,9 @@ def on_module(node)
72
:lex, :analyze_query, :execute_query, :execute_query_lazy,
73
# Only useful for isolated event tracking:
74
:begin_dataloader, :end_dataloader,
75
- :dataloader_fiber_exit, :dataloader_spawn_execution_fiber, :dataloader_spawn_source_fiber
+ :dataloader_fiber_exit, :dataloader_spawn_execution_fiber, :dataloader_spawn_source_fiber,
76
+ # Tracks object references, but not durations:
77
+ :objects, :object_loaded
78
]
79
missing_defs.each do |missing_def|
80
if all_defs.include?(:"begin_#{missing_def}") && all_defs.include?(:"end_#{missing_def}")
0 commit comments