append_info_to_payload(payload) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/railties/controller_runtime.rb, line 56
        def append_info_to_payload(payload)
          super

          payload[:db_runtime] = (db_runtime || 0) + ActiveRecord::RuntimeRegistry.reset_runtimes
          payload[:queries_count] = ActiveRecord::RuntimeRegistry.reset_queries_count
          payload[:cached_queries_count] = ActiveRecord::RuntimeRegistry.reset_cached_queries_count
        end
Register or log in to add new notes.