clear_all_connections!(role = nil) public

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/connection_adapters/abstract/connection_handler.rb, line 206
      def clear_all_connections!(role = nil)
        if role.nil?
          deprecation_for_pool_handling(__method__)
          role = ActiveRecord::Base.current_role
        end

        each_connection_pool(role).each(&:disconnect!)
      end
Register or log in to add new notes.