Method: Auth0::Mixins::HTTPProxy#request_with_retry

Defined in:
lib/auth0/mixins/httpproxy.rb

#request_with_retry(method, uri, body = {}, extra_headers = {}) ⇒ Object



68
69
70
71
72
# File 'lib/auth0/mixins/httpproxy.rb', line 68

def request_with_retry(method, uri, body = {}, extra_headers = {})
  Retryable.retryable(retry_options) do
    request(method, uri, body, extra_headers)
  end
end