Flowdock
method

resolve_config_for_connection

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: ConnectionHandling
resolve_config_for_connection(config_or_env) private

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_handling.rb, line 348
      def resolve_config_for_connection(config_or_env)
        raise "Anonymous class is not allowed." unless name

        connection_name = primary_class? ? Base.name : name
        self.connection_specification_name = connection_name

        Base.configurations.resolve(config_or_env)
      end
Register or log in to add new notes.