Commit dc702856 authored by Mark Chao's avatar Mark Chao

Merge branch '336987-remove-storesecurityscansworker' into 'master'

Remove unused StoreSecurityScansWorker

See merge request gitlab-org/gitlab!66984
parents f10d4e52 457d07b2
...@@ -864,15 +864,6 @@ ...@@ -864,15 +864,6 @@
:weight: 2 :weight: 2
:idempotent: :idempotent:
:tags: [] :tags: []
- :name: security_scans:store_security_scans
:worker_name: StoreSecurityScansWorker
:feature_category: :vulnerability_management
:has_external_dependencies:
:urgency: :low
:resource_boundary: :unknown
:weight: 2
:idempotent:
:tags: []
- :name: todos_destroyer:todos_destroyer_confidential_epic - :name: todos_destroyer:todos_destroyer_confidential_epic
:worker_name: TodosDestroyer::ConfidentialEpicWorker :worker_name: TodosDestroyer::ConfidentialEpicWorker
:feature_category: :epics :feature_category: :epics
......
# frozen_string_literal: true
class StoreSecurityScansWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
data_consistency :always
sidekiq_options retry: 3
include SecurityScansQueue
# rubocop: disable CodeReuse/ActiveRecord
def perform(*)
# no-op
# This worker has been deprecated and will be removed with next release.
# New worker to do the same job is, `Security::StoreScansWorker`,
# We will save all the security scans and findings here
# as well as solve the deduplication thingy.
end
end
...@@ -430,7 +430,6 @@ RSpec.describe 'Every Sidekiq worker' do ...@@ -430,7 +430,6 @@ RSpec.describe 'Every Sidekiq worker' do
'StageUpdateWorker' => 3, 'StageUpdateWorker' => 3,
'StatusPage::PublishWorker' => 5, 'StatusPage::PublishWorker' => 5,
'StoreSecurityReportsWorker' => 3, 'StoreSecurityReportsWorker' => 3,
'StoreSecurityScansWorker' => 3,
'SyncSeatLinkRequestWorker' => 20, 'SyncSeatLinkRequestWorker' => 20,
'SyncSeatLinkWorker' => 12, 'SyncSeatLinkWorker' => 12,
'SystemHookPushWorker' => 3, 'SystemHookPushWorker' => 3,
......
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