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/background_migration/migrate_pages_to_zip_storage.rb')
-rw-r--r--lib/gitlab/background_migration/migrate_pages_to_zip_storage.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/gitlab/background_migration/migrate_pages_to_zip_storage.rb b/lib/gitlab/background_migration/migrate_pages_to_zip_storage.rb
deleted file mode 100644
index f53f2e8ee79..00000000000
--- a/lib/gitlab/background_migration/migrate_pages_to_zip_storage.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module BackgroundMigration
- # migrates pages from legacy storage to zip format
- # we intentionally use application code here because
- # it has a lot of dependencies including models, carrierwave uploaders and service objects
- # and copying all or part of this code in the background migration doesn't add much value
- # see https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54578 for discussion
- class MigratePagesToZipStorage
- def perform(start_id, stop_id)
- # no-op
- end
- end
- end
-end