Commit 621945b6 authored by Sean McGivern's avatar Sean McGivern

Merge branch...

Merge branch 'qmnguyen0711/340629-hashed-storage-migration-workers-depend-on-their-own-queue-size' into 'master'

Remove needs_own_queue tag from HashedStorage workers

See merge request gitlab-org/gitlab!78981
parents d5b24f6d d9427c6e
...@@ -1100,8 +1100,7 @@ ...@@ -1100,8 +1100,7 @@
:resource_boundary: :unknown :resource_boundary: :unknown
:weight: 1 :weight: 1
:idempotent: :idempotent:
:tags: :tags: []
- :needs_own_queue
- :name: hashed_storage:hashed_storage_project_migrate - :name: hashed_storage:hashed_storage_project_migrate
:worker_name: HashedStorage::ProjectMigrateWorker :worker_name: HashedStorage::ProjectMigrateWorker
:feature_category: :source_code_management :feature_category: :source_code_management
...@@ -1110,8 +1109,7 @@ ...@@ -1110,8 +1109,7 @@
:resource_boundary: :unknown :resource_boundary: :unknown
:weight: 1 :weight: 1
:idempotent: :idempotent:
:tags: :tags: []
- :needs_own_queue
- :name: hashed_storage:hashed_storage_project_rollback - :name: hashed_storage:hashed_storage_project_rollback
:worker_name: HashedStorage::ProjectRollbackWorker :worker_name: HashedStorage::ProjectRollbackWorker
:feature_category: :source_code_management :feature_category: :source_code_management
...@@ -1120,8 +1118,7 @@ ...@@ -1120,8 +1118,7 @@
:resource_boundary: :unknown :resource_boundary: :unknown
:weight: 1 :weight: 1
:idempotent: :idempotent:
:tags: :tags: []
- :needs_own_queue
- :name: hashed_storage:hashed_storage_rollbacker - :name: hashed_storage:hashed_storage_rollbacker
:worker_name: HashedStorage::RollbackerWorker :worker_name: HashedStorage::RollbackerWorker
:feature_category: :source_code_management :feature_category: :source_code_management
...@@ -1130,8 +1127,7 @@ ...@@ -1130,8 +1127,7 @@
:resource_boundary: :unknown :resource_boundary: :unknown
:weight: 1 :weight: 1
:idempotent: :idempotent:
:tags: :tags: []
- :needs_own_queue
- :name: incident_management:incident_management_add_severity_system_note - :name: incident_management:incident_management_add_severity_system_note
:worker_name: IncidentManagement::AddSeveritySystemNoteWorker :worker_name: IncidentManagement::AddSeveritySystemNoteWorker
:feature_category: :incident_management :feature_category: :incident_management
......
...@@ -11,9 +11,6 @@ module HashedStorage ...@@ -11,9 +11,6 @@ module HashedStorage
queue_namespace :hashed_storage queue_namespace :hashed_storage
feature_category :source_code_management 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] start initial ID of the batch
# @param [Integer] finish last ID of the batch # @param [Integer] finish last ID of the batch
def perform(start, finish) def perform(start, finish)
......
...@@ -11,9 +11,6 @@ module HashedStorage ...@@ -11,9 +11,6 @@ module HashedStorage
queue_namespace :hashed_storage queue_namespace :hashed_storage
loggable_arguments 1 loggable_arguments 1
# https://gitlab.com/gitlab-org/gitlab/-/issues/340629
tags :needs_own_queue
attr_reader :project_id attr_reader :project_id
def perform(project_id, old_disk_path = nil) def perform(project_id, old_disk_path = nil)
......
...@@ -11,9 +11,6 @@ module HashedStorage ...@@ -11,9 +11,6 @@ module HashedStorage
queue_namespace :hashed_storage queue_namespace :hashed_storage
loggable_arguments 1 loggable_arguments 1
# https://gitlab.com/gitlab-org/gitlab/-/issues/340629
tags :needs_own_queue
attr_reader :project_id attr_reader :project_id
def perform(project_id, old_disk_path = nil) def perform(project_id, old_disk_path = nil)
......
...@@ -11,9 +11,6 @@ module HashedStorage ...@@ -11,9 +11,6 @@ module HashedStorage
queue_namespace :hashed_storage queue_namespace :hashed_storage
feature_category :source_code_management 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] start initial ID of the batch
# @param [Integer] finish last ID of the batch # @param [Integer] finish last ID of the batch
def perform(start, finish) 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