Method: Traject::Indexer#run_after_processing_steps

Defined in:
lib/traject/indexer.rb

#run_after_processing_stepsObject



638
639
640
641
642
643
644
645
646
647
# File 'lib/traject/indexer.rb', line 638

def run_after_processing_steps
  @after_processing_steps.each do |step|
    begin
      step.execute
    rescue StandardError => e
      logger.fatal("Unexpected exception #{e} when executing #{step}")
      raise e
    end
  end
end