chore: Handle exceptions on external URL calls (#1334)

This commit is contained in:
Sojan Jose
2020-10-11 20:22:21 +05:30
committed by GitHub
parent 7d409321e9
commit 59bee66e63
6 changed files with 9 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
class Webhooks::Trigger
def self.execute(url, payload)
RestClient.post(url, payload.to_json, { content_type: :json, accept: :json })
rescue RestClient::NotFound, RestClient::GatewayTimeout, SocketError => e
rescue *ExceptionList::REST_CLIENT_EXCEPTIONS, *ExceptionList::URI_EXCEPTIONS => e
Rails.logger.info "Exception: invalid webhook url #{url} : #{e.message}"
rescue StandardError => e
Raven.capture_exception(e)