method

remove_connection_from_thread_cache

remove_connection_from_thread_cache(conn, owner_thread = conn.owner)
private

No documentation available.

# File activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb, line 1206
        def remove_connection_from_thread_cache(conn, owner_thread = conn.owner)
          if owner_thread
            @leases[owner_thread].clear(conn)
          end
        end