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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-04-26 18:17:18 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-26 18:17:18 +0300
commit34283a71d9ac31eb4da0b59d0b25fc2be014bc9c (patch)
tree4a780bf8d9c57c3b8ce34fc81152d8a87f71d594 /app/workers
parent9edf852c3a851d84b85bc94f7a3b41d5ef04dd32 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/all_queues.yml9
-rw-r--r--app/workers/gitlab/github_import/import_release_attachments_worker.rb23
2 files changed, 0 insertions, 32 deletions
diff --git a/app/workers/all_queues.yml b/app/workers/all_queues.yml
index 446cba267ad..387f817ac5e 100644
--- a/app/workers/all_queues.yml
+++ b/app/workers/all_queues.yml
@@ -1245,15 +1245,6 @@
:weight: 1
:idempotent: false
:tags: []
-- :name: github_importer:github_import_import_release_attachments
- :worker_name: Gitlab::GithubImport::ImportReleaseAttachmentsWorker
- :feature_category: :importers
- :has_external_dependencies: true
- :urgency: :low
- :resource_boundary: :unknown
- :weight: 1
- :idempotent: false
- :tags: []
- :name: github_importer:github_import_pull_requests_import_review_request
:worker_name: Gitlab::GithubImport::PullRequests::ImportReviewRequestWorker
:feature_category: :importers
diff --git a/app/workers/gitlab/github_import/import_release_attachments_worker.rb b/app/workers/gitlab/github_import/import_release_attachments_worker.rb
deleted file mode 100644
index bf901f2f7b8..00000000000
--- a/app/workers/gitlab/github_import/import_release_attachments_worker.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-# frozen_string_literal: true
-
-# TODO: remove in 16.X milestone
-# https://gitlab.com/gitlab-org/gitlab/-/issues/377059
-module Gitlab
- module GithubImport
- class ImportReleaseAttachmentsWorker # rubocop:disable Scalability/IdempotentWorker
- include ObjectImporter
-
- def representation_class
- Representation::NoteText
- end
-
- def importer_class
- Importer::NoteAttachmentsImporter
- end
-
- def object_type
- :release_attachment
- end
- end
- end
-end