# File lib/thinking_sphinx/configuration/duplicate_names.rb, line 8
  def reconcile
    indices.each do |index|
      return if index.distributed?

      counts_for(index).each do |name, count|
        next if count <= 1

        raise ThinkingSphinx::DuplicateNameError,
          "Duplicate field/attribute name '#{name}' in index '#{index.name}'"
      end
    end
  end