Skip to content
This repository was archived by the owner on Oct 5, 2021. It is now read-only.

Retry git HTTP requests #62

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ gem 'devise_saml_authenticatable', '~> 1.2.2'
gem 'foreman'
gem 'haml'
gem 'hyperresource'
gem 'json', '>= 1.8.5'
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(there's a nasty bug wherein json 1.8.x where x < 5 will not compile on ruby 2.4.1, the current release version)

gem 'jquery-rails'
gem 'omniauth-google-oauth2'
gem 'omniauth-saml', '~> 1.4.1'
Expand All @@ -34,6 +35,7 @@ gem 'responders', '~> 2.0'
gem 'resque'
gem 'resque-pool', '~> 0.5.0'
gem 'resque-web', '0.0.6', require: 'resque_web'
gem 'retriable', '~> 3.0.2'
gem 'roar'
gem 'rollbar', '~> 2.3.0'
gem 'sass-rails'
Expand Down
3 changes: 2 additions & 1 deletion lib/github.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def self.pusher

def self.send_request(verb, url, params={})
raise "invalid HTTP verb #{verb}" unless VALID_VERBS.include?(verb)

query_params = REQUEST_PARAMS
query_params.merge!(params) if verb == :get
url += "?#{query_params.to_query}"
Expand All @@ -43,7 +44,7 @@ def self.send_request(verb, url, params={})
request.content_type = 'application/json'
end

http.request(request)
Retriable.retriable { http.request(request) }
end

def self.get(url, params={})
Expand Down