method

process_action

process_action(action, *args)
private

No documentation available.

# File activerecord/lib/active_record/railties/controller_runtime.rb, line 34
        def process_action(action, *args)
          # We also need to reset the runtime before each action
          # because of queries in middleware or in cases we are streaming
          # and it won't be cleaned up by the method below.
          ActiveRecord::RuntimeRegistry.reset
          super
        end