method

checkout_new_connection

checkout_new_connection()
private

No documentation available.

# File activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb, line 244
      def checkout_new_connection
        c = new_connection
        @connections << c
        checkout_and_verify(c)
      end