sanger/sequencescape

View on GitHub
lib/volume_check.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
# frozen_string_literal: true
require 'exception_notification'

begin
  PlateVolume.process_all_volume_check_files
rescue StandardError => e
  ExceptionNotifier.notify_exception(e, data: { message: 'Process Volume Check Files Cron Failed' })
  $stderr.puts e.to_s
end