Browse Source

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

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
2c58e7e06a
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      app/services/process_feed_service.rb

+ 3
- 0
app/services/process_feed_service.rb View File

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

Loading…
Cancel
Save