Rescue exceptions related to Goldfinger (#4044)

* Rescue exceptions related to Goldfinger

* Exclude Goldfinger::SSLError
This commit is contained in:
abcang 2017-07-10 00:33:21 +09:00 committed by Eugen Rochko
parent fc4c74660b
commit 307f3e0dd7
1 changed files with 3 additions and 0 deletions

View File

@ -32,5 +32,8 @@ class FetchRemoteAccountService < BaseService
rescue Nokogiri::XML::XPath::SyntaxError
Rails.logger.debug 'Invalid XML or missing namespace'
nil
rescue Goldfinger::NotFoundError, Goldfinger::Error
Rails.logger.debug 'Exceptions related to Goldfinger occurs'
nil
end
end