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 @@
:weight: 1
:idempotent: true
: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
:worker_name: AuthorizedProjectUpdate::UserRefreshOverUserRangeWorker
:feature_category: :authentication_and_authorization
......@@ -39,15 +48,6 @@
:weight: 1
:idempotent: true
: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
:worker_name: AutoDevops::DisableWorker
:feature_category: :auto_devops
......
......@@ -7,7 +7,7 @@ module AuthorizedProjectUpdate
feature_category :authentication_and_authorization
urgency :high
queue_namespace :authorized_projects
queue_namespace :authorized_project_update
deduplicate :until_executing, including_scheduled: true
idempotent!
......
......@@ -44,8 +44,6 @@
- 2
- - authorized_project_update
- 1
- - authorized_projects
- 1
- - authorized_projects
- 2
- - 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