2020-03-09 13:42:32 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
##
|
|
|
|
# Concern for setting Sidekiq settings for the various Secure product queues
|
|
|
|
#
|
|
|
|
module SecurityScansQueue
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
queue_namespace :security_scans
|
2021-09-04 01:27:46 +05:30
|
|
|
feature_category :vulnerability_management
|
2020-03-09 13:42:32 +05:30
|
|
|
end
|
|
|
|
end
|