Commit d9427c6e authored by Quang-Minh Nguyen's avatar Quang-Minh Nguyen

Remove needs_own_queue tag from HashedStorage workers

After this change, jobs from these workers don't need their own queue
anymore. This won't be a problem for both GitLab.com or self-managed
instance because those workers were a part of the migration from legacy
git storage to hased storage. At this point, the migration is done.
There shouldn't be any migration job in the future.

Issue:
https://gitlab.com/gitlab-org/gitlab/-/issues/340629
parent d75114c8
......@@ -1100,8 +1100,7 @@
:resource_boundary: :unknown
:weight: 1
:idempotent:
:tags:
- :needs_own_queue
:tags: []
- :name: hashed_storage:hashed_storage_project_migrate
:worker_name: HashedStorage::ProjectMigrateWorker
:feature_category: :source_code_management
......@@ -1110,8 +1109,7 @@
:resource_boundary: :unknown
:weight: 1
:idempotent:
:tags:
- :needs_own_queue
:tags: []
- :name: hashed_storage:hashed_storage_project_rollback
:worker_name: HashedStorage::ProjectRollbackWorker
:feature_category: :source_code_management
......@@ -1120,8 +1118,7 @@
:resource_boundary: :unknown
:weight: 1
:idempotent:
:tags:
- :needs_own_queue
:tags: []
- :name: hashed_storage:hashed_storage_rollbacker
:worker_name: HashedStorage::RollbackerWorker
:feature_category: :source_code_management
......@@ -1130,8 +1127,7 @@
:resource_boundary: :unknown
:weight: 1
:idempotent:
:tags:
- :needs_own_queue
:tags: []
- :name: incident_management:incident_management_add_severity_system_note
:worker_name: IncidentManagement::AddSeveritySystemNoteWorker
:feature_category: :incident_management
......
......@@ -11,9 +11,6 @@ module HashedStorage
queue_namespace :hashed_storage
feature_category :source_code_management
# https://gitlab.com/gitlab-org/gitlab/-/issues/340629
tags :needs_own_queue
# @param [Integer] start initial ID of the batch
# @param [Integer] finish last ID of the batch
def perform(start, finish)
......
......@@ -11,9 +11,6 @@ module HashedStorage
queue_namespace :hashed_storage
loggable_arguments 1
# https://gitlab.com/gitlab-org/gitlab/-/issues/340629
tags :needs_own_queue
attr_reader :project_id
def perform(project_id, old_disk_path = nil)
......
......@@ -11,9 +11,6 @@ module HashedStorage
queue_namespace :hashed_storage
loggable_arguments 1
# https://gitlab.com/gitlab-org/gitlab/-/issues/340629
tags :needs_own_queue
attr_reader :project_id
def perform(project_id, old_disk_path = nil)
......
......@@ -11,9 +11,6 @@ module HashedStorage
queue_namespace :hashed_storage
feature_category :source_code_management
# https://gitlab.com/gitlab-org/gitlab/-/issues/340629
tags :needs_own_queue
# @param [Integer] start initial ID of the batch
# @param [Integer] finish last ID of the batch
def perform(start, finish)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment