Commit e17236c8 authored by Stan Hu's avatar Stan Hu

Merge branch '212373-249588-enable-ci_new_artifact_file_reader' into 'master'

Enable ci_new_artifact_file_reader by default

See merge request gitlab-org/gitlab!42595
parents 0de3e33e 714a6f7f
---
title: Fix triggering multiple children pipeline with the same artifact
merge_request: 42595
author:
type: fixed
...@@ -4,4 +4,4 @@ introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/40268 ...@@ -4,4 +4,4 @@ introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/40268
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/249588 rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/249588
group: group::pipeline authoring group: group::pipeline authoring
type: development type: development
default_enabled: false default_enabled: true
...@@ -72,7 +72,7 @@ module Gitlab ...@@ -72,7 +72,7 @@ module Gitlab
end end
def self.new_artifact_file_reader_enabled?(project) def self.new_artifact_file_reader_enabled?(project)
::Feature.enabled?(:ci_new_artifact_file_reader, project, default_enabled: false) ::Feature.enabled?(:ci_new_artifact_file_reader, project, default_enabled: true)
end end
end end
end end
......
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