Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/import/github_controller.rb')
-rw-r--r--app/controllers/import/github_controller.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/app/controllers/import/github_controller.rb b/app/controllers/import/github_controller.rb
index 28732d58484..2b72ceceb5a 100644
--- a/app/controllers/import/github_controller.rb
+++ b/app/controllers/import/github_controller.rb
@@ -192,7 +192,7 @@ class Import::GithubController < Import::BaseController
def client_proxy
@client_proxy ||= Gitlab::GithubImport::Clients::Proxy.new(
- session[access_token_key], client_options
+ session[access_token_key]
)
end
@@ -265,10 +265,6 @@ class Import::GithubController < Import::BaseController
end
# rubocop: enable CodeReuse/ActiveRecord
- def client_options
- { wait_for_rate_limit_reset: false }
- end
-
def rate_limit_threshold_exceeded
head :too_many_requests
end