Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
512eb662
Commit
512eb662
authored
Sep 08, 2021
by
Tetiana Chupryna
Committed by
Doug Stull
Sep 08, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assign feature category for Composition analysis features
parent
7bfa0963
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
3 deletions
+10
-3
ee/app/controllers/ee/projects/security/configuration_controller.rb
...trollers/ee/projects/security/configuration_controller.rb
+2
-1
ee/app/workers/all_queues.yml
ee/app/workers/all_queues.yml
+1
-1
ee/app/workers/security/auto_fix_worker.rb
ee/app/workers/security/auto_fix_worker.rb
+1
-1
ee/app/workers/security/store_scans_worker.rb
ee/app/workers/security/store_scans_worker.rb
+2
-0
ee/app/workers/security/track_secure_scans_worker.rb
ee/app/workers/security/track_secure_scans_worker.rb
+2
-0
ee/app/workers/store_security_reports_worker.rb
ee/app/workers/store_security_reports_worker.rb
+2
-0
No files found.
ee/app/controllers/ee/projects/security/configuration_controller.rb
View file @
512eb662
...
@@ -21,7 +21,8 @@ module EE
...
@@ -21,7 +21,8 @@ module EE
authorize_modify_auto_fix_setting!
authorize_modify_auto_fix_setting!
end
end
feature_category
:static_application_security_testing
feature_category
:static_application_security_testing
,
[
:show
]
feature_category
:dependency_scanning
,
[
:auto_fix
]
end
end
# rubocop:disable Gitlab/ModuleWithInstanceVariables
# rubocop:disable Gitlab/ModuleWithInstanceVariables
...
...
ee/app/workers/all_queues.yml
View file @
512eb662
...
@@ -1149,7 +1149,7 @@
...
@@ -1149,7 +1149,7 @@
:tags: []
:tags: []
-
:name: security_auto_fix
-
:name: security_auto_fix
:worker_name: Security::AutoFixWorker
:worker_name: Security::AutoFixWorker
:feature_category: :
vulnerability_management
:feature_category: :
dependency_scanning
:has_external_dependencies:
:has_external_dependencies:
:urgency: :low
:urgency: :low
:resource_boundary: :unknown
:resource_boundary: :unknown
...
...
ee/app/workers/security/auto_fix_worker.rb
View file @
512eb662
...
@@ -8,7 +8,7 @@ module Security
...
@@ -8,7 +8,7 @@ module Security
sidekiq_options
retry:
3
sidekiq_options
retry:
3
feature_category
:
vulnerability_management
feature_category
:
dependency_scanning
idempotent!
idempotent!
...
...
ee/app/workers/security/store_scans_worker.rb
View file @
512eb662
...
@@ -10,6 +10,8 @@ module Security
...
@@ -10,6 +10,8 @@ module Security
sidekiq_options
retry:
3
sidekiq_options
retry:
3
include
SecurityScansQueue
include
SecurityScansQueue
feature_category
:vulnerability_management
# rubocop: disable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def
perform
(
pipeline_id
)
def
perform
(
pipeline_id
)
::
Ci
::
Pipeline
.
find_by
(
id:
pipeline_id
).
try
do
|
pipeline
|
::
Ci
::
Pipeline
.
find_by
(
id:
pipeline_id
).
try
do
|
pipeline
|
...
...
ee/app/workers/security/track_secure_scans_worker.rb
View file @
512eb662
...
@@ -6,6 +6,8 @@ module Security
...
@@ -6,6 +6,8 @@ module Security
include
ApplicationWorker
include
ApplicationWorker
include
SecurityScansQueue
include
SecurityScansQueue
feature_category
:vulnerability_management
sidekiq_options
retry:
1
sidekiq_options
retry:
1
data_consistency
:always
data_consistency
:always
worker_resource_boundary
:cpu
worker_resource_boundary
:cpu
...
...
ee/app/workers/store_security_reports_worker.rb
View file @
512eb662
...
@@ -10,6 +10,8 @@ class StoreSecurityReportsWorker # rubocop:disable Scalability/IdempotentWorker
...
@@ -10,6 +10,8 @@ class StoreSecurityReportsWorker # rubocop:disable Scalability/IdempotentWorker
sidekiq_options
retry:
3
sidekiq_options
retry:
3
include
SecurityScansQueue
include
SecurityScansQueue
feature_category
:vulnerability_management
worker_resource_boundary
:cpu
worker_resource_boundary
:cpu
def
perform
(
pipeline_id
)
def
perform
(
pipeline_id
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment