commit: 307f3e0dd77b338669648f830f7f74103d2d226f
parent: fc4c74660b690038ae48264f9d5b0230df58acc4
Author: abcang <abcang1015@gmail.com>
Date: Mon, 10 Jul 2017 00:33:21 +0900
Rescue exceptions related to Goldfinger (#4044)
* Rescue exceptions related to Goldfinger
* Exclude Goldfinger::SSLError
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/app/services/fetch_remote_account_service.rb b/app/services/fetch_remote_account_service.rb
@@ -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