Commit 385444e6 authored by huzaifaiftikhar1's avatar huzaifaiftikhar1

Update feature category for group & project deletion workers

Delayed group & project deletion feature is owned by the compliance
group,therefore, updated the feature_category to compliance_management
parent 37e63135
......@@ -9,7 +9,7 @@ class AdjournedGroupDeletionWorker # rubocop:disable Scalability/IdempotentWorke
INTERVAL = 10.seconds.to_i
feature_category :authentication_and_authorization
feature_category :compliance_management
def perform
deletion_cutoff = Gitlab::CurrentSettings.deletion_adjourned_period.days.ago.to_date
......
......@@ -8,7 +8,7 @@ class AdjournedProjectDeletionWorker # rubocop:disable Scalability/IdempotentWor
sidekiq_options retry: 3
include ExceptionBacktrace
feature_category :authentication_and_authorization
feature_category :compliance_management
def perform(project_id)
project = Project.find(project_id)
......
......@@ -9,7 +9,7 @@ class AdjournedProjectsDeletionCronWorker # rubocop:disable Scalability/Idempote
INTERVAL = 10.seconds.to_i
feature_category :authentication_and_authorization
feature_category :compliance_management
def perform
deletion_cutoff = Gitlab::CurrentSettings.deletion_adjourned_period.days.ago.to_date
......
......@@ -23,7 +23,7 @@
:tags: []
- :name: cronjob:adjourned_group_deletion
:worker_name: AdjournedGroupDeletionWorker
:feature_category: :authentication_and_authorization
:feature_category: :compliance_management
:has_external_dependencies:
:urgency: :low
:resource_boundary: :unknown
......@@ -32,7 +32,7 @@
:tags: []
- :name: cronjob:adjourned_projects_deletion_cron
:worker_name: AdjournedProjectsDeletionCronWorker
:feature_category: :authentication_and_authorization
:feature_category: :compliance_management
:has_external_dependencies:
:urgency: :low
:resource_boundary: :unknown
......@@ -833,7 +833,7 @@
:tags: []
- :name: adjourned_project_deletion
:worker_name: AdjournedProjectDeletionWorker
:feature_category: :authentication_and_authorization
:feature_category: :compliance_management
:has_external_dependencies:
:urgency: :low
:resource_boundary: :unknown
......
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