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 'lib/gitlab/github_import.rb')
-rw-r--r--lib/gitlab/github_import.rb12
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/gitlab/github_import.rb b/lib/gitlab/github_import.rb
index 9556a9e98ba..24e77363e1b 100644
--- a/lib/gitlab/github_import.rb
+++ b/lib/gitlab/github_import.rb
@@ -8,12 +8,18 @@ module Gitlab
def self.new_client_for(project, token: nil, host: nil, parallel: true)
token_to_use = token || project.import_data&.credentials&.fetch(:user)
- Client.new(
- token_to_use,
+ token_pool = project.import_data&.credentials&.dig(:additional_access_tokens)
+ options = {
host: host.presence || self.formatted_import_url(project),
per_page: self.per_page(project),
parallel: parallel
- )
+ }
+
+ if token_pool
+ ClientPool.new(token_pool: token_pool, **options)
+ else
+ Client.new(token_to_use, **options)
+ end
end
# Returns the ID of the ghost user.