Catch validation errors in ProcessFeedService so that one failing entry wouldn't stop others from going through

This commit is contained in:
Eugen Rochko 2016-11-18 23:19:38 +01:00
parent e4f56fa942
commit 2c58e7e06a

View file

@ -36,6 +36,9 @@ class ProcessFeedService < BaseService
when :delete when :delete
return delete_status return delete_status
end end
rescue ActiveRecord::RecordInvalid => e
Rails.logger.debug "Nothing was saved for #{id} because: #{e}"
nil
end end
private private