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/bulk_imports/groups/stage.rb')
-rw-r--r--lib/bulk_imports/groups/stage.rb8
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/bulk_imports/groups/stage.rb b/lib/bulk_imports/groups/stage.rb
index 7a777f1c8e1..1cdd3bb1d65 100644
--- a/lib/bulk_imports/groups/stage.rb
+++ b/lib/bulk_imports/groups/stage.rb
@@ -71,7 +71,7 @@ module BulkImports
end
def project_entities_pipeline
- if migrate_projects? && project_pipeline_available? && feature_flag_enabled?
+ if migrate_projects? && project_pipeline_available?
{
project_entities: {
pipeline: BulkImports::Groups::Pipelines::ProjectEntitiesPipeline,
@@ -90,12 +90,6 @@ module BulkImports
def project_pipeline_available?
@bulk_import.source_version_info >= BulkImport.min_gl_version_for_project_migration
end
-
- def feature_flag_enabled?
- destination_namespace = @bulk_import_entity.destination_namespace
-
- BulkImports::Features.project_migration_enabled?(destination_namespace)
- end
end
end
end