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/import_sources.rb')
-rw-r--r--lib/gitlab/import_sources.rb13
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/gitlab/import_sources.rb b/lib/gitlab/import_sources.rb
index 37bcc53019f..fec8b3a7708 100644
--- a/lib/gitlab/import_sources.rb
+++ b/lib/gitlab/import_sources.rb
@@ -20,9 +20,6 @@ module Gitlab
ImportSource.new('manifest', 'Manifest file', nil)
].freeze
- LEGACY_IMPORT_TABLE = IMPORT_TABLE.deep_dup
- LEGACY_IMPORT_TABLE[2].importer = Gitlab::BitbucketServerImport::Importer
-
class << self
prepend_mod_with('Gitlab::ImportSources') # rubocop: disable Cop/InjectEnterpriseEditionModule
@@ -47,9 +44,15 @@ module Gitlab
end
def import_table
- return IMPORT_TABLE if Feature.enabled?(:bitbucket_server_parallel_importer)
+ bitbucket_parallel_enabled = Feature.enabled?(:bitbucket_parallel_importer)
+
+ return IMPORT_TABLE unless bitbucket_parallel_enabled
+
+ import_table = IMPORT_TABLE.deep_dup
+
+ import_table[1].importer = Gitlab::BitbucketImport::ParallelImporter if bitbucket_parallel_enabled
- LEGACY_IMPORT_TABLE
+ import_table
end
end
end