Commit 2e11d9f5 authored by Manoj M J's avatar Manoj M J

Avoid conflicting workers in `authorized_projects` namespace

This change avoids having conflicting Sidekiq workers
in that use the `authorized_projects` namespace.

Changelog: fixed
parent a44d81f1
...@@ -21,6 +21,15 @@ ...@@ -21,6 +21,15 @@
:weight: 1 :weight: 1
:idempotent: true :idempotent: true
:tags: [] :tags: []
- :name: authorized_project_update:authorized_project_update_project_recalculate
:worker_name: AuthorizedProjectUpdate::ProjectRecalculateWorker
:feature_category: :authentication_and_authorization
:has_external_dependencies:
:urgency: :high
:resource_boundary: :unknown
:weight: 1
:idempotent: true
:tags: []
- :name: authorized_project_update:authorized_project_update_user_refresh_over_user_range - :name: authorized_project_update:authorized_project_update_user_refresh_over_user_range
:worker_name: AuthorizedProjectUpdate::UserRefreshOverUserRangeWorker :worker_name: AuthorizedProjectUpdate::UserRefreshOverUserRangeWorker
:feature_category: :authentication_and_authorization :feature_category: :authentication_and_authorization
...@@ -39,15 +48,6 @@ ...@@ -39,15 +48,6 @@
:weight: 1 :weight: 1
:idempotent: true :idempotent: true
:tags: [] :tags: []
- :name: authorized_projects:authorized_project_update_project_recalculate
:worker_name: AuthorizedProjectUpdate::ProjectRecalculateWorker
:feature_category: :authentication_and_authorization
:has_external_dependencies:
:urgency: :high
:resource_boundary: :unknown
:weight: 1
:idempotent: true
:tags: []
- :name: auto_devops:auto_devops_disable - :name: auto_devops:auto_devops_disable
:worker_name: AutoDevops::DisableWorker :worker_name: AutoDevops::DisableWorker
:feature_category: :auto_devops :feature_category: :auto_devops
......
...@@ -7,7 +7,7 @@ module AuthorizedProjectUpdate ...@@ -7,7 +7,7 @@ module AuthorizedProjectUpdate
feature_category :authentication_and_authorization feature_category :authentication_and_authorization
urgency :high urgency :high
queue_namespace :authorized_projects queue_namespace :authorized_project_update
deduplicate :until_executing, including_scheduled: true deduplicate :until_executing, including_scheduled: true
idempotent! idempotent!
......
...@@ -44,8 +44,6 @@ ...@@ -44,8 +44,6 @@
- 2 - 2
- - authorized_project_update - - authorized_project_update
- 1 - 1
- - authorized_projects
- 1
- - authorized_projects - - authorized_projects
- 2 - 2
- - auto_devops - - auto_devops
......
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