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
17184621
Commit
17184621
authored
Jan 27, 2022
by
Mehmet Emin INAC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable `security_report_ingestion_framework` FF by default
Changelog: changed EE: true
parent
a141b520
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
config/feature_flags/development/security_report_ingestion_framework.yml
...flags/development/security_report_ingestion_framework.yml
+2
-2
ee/app/workers/store_security_reports_worker.rb
ee/app/workers/store_security_reports_worker.rb
+1
-1
No files found.
config/feature_flags/development/security_report_ingestion_framework.yml
View file @
17184621
---
name
:
security_report_ingestion_framework
introduced_by_url
:
https://gitlab.com/gitlab-org/gitlab/-/merge_requests/66735
rollout_issue_url
:
rollout_issue_url
:
https://gitlab.com/gitlab-org/gitlab/-/issues/343332
milestone
:
'
14.4'
type
:
development
group
:
group::threat insights
default_enabled
:
fals
e
default_enabled
:
tru
e
ee/app/workers/store_security_reports_worker.rb
View file @
17184621
...
...
@@ -18,7 +18,7 @@ class StoreSecurityReportsWorker # rubocop:disable Scalability/IdempotentWorker
Ci
::
Pipeline
.
find
(
pipeline_id
).
try
do
|
pipeline
|
break
unless
pipeline
.
project
.
can_store_security_reports?
if
Feature
.
enabled?
(
:security_report_ingestion_framework
,
pipeline
.
project
)
if
Feature
.
enabled?
(
:security_report_ingestion_framework
,
pipeline
.
project
,
default_enabled: :yaml
)
::
Security
::
Ingestion
::
IngestReportsService
.
execute
(
pipeline
)
else
::
Security
::
StoreReportsService
.
new
(
pipeline
).
execute
...
...
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