method

attempt_configure_connection

rails latest stable - Class: ActiveRecord::ConnectionAdapters::AbstractAdapter

Method not available on this version

This method is only available on newer versions. The first available version (v7.2.3) is shown here.

attempt_configure_connection()
private

No documentation available.

# File activerecord/lib/active_record/connection_adapters/abstract_adapter.rb, line 1230
        def attempt_configure_connection
          configure_connection
        rescue Exception # Need to handle things such as Timeout::ExitException
          disconnect!
          raise
        end