method

checkout_new_connection

checkout_new_connection()
private

No documentation available.

# File activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb, line 322
      def checkout_new_connection
        raise ConnectionNotEstablished unless @automatic_reconnect

        c = new_connection
        c.pool = self
        @connections << c
        c
      end