Commit c815fe50 authored by Mikołaj Wawrzyniak's avatar Mikołaj Wawrzyniak

Merge branch '273755-enable-ci_new_artifact_file_reader' into 'master'

Enable the FF ci_new_artifact_file_reader by default

See merge request gitlab-org/gitlab!68293
parents af8e04d5 2be87655
...@@ -5,4 +5,4 @@ rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/273755 ...@@ -5,4 +5,4 @@ rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/273755
milestone: '13.6' milestone: '13.6'
type: development type: development
group: group::pipeline authoring group: group::pipeline authoring
default_enabled: false default_enabled: true
...@@ -45,7 +45,7 @@ module Gitlab ...@@ -45,7 +45,7 @@ module Gitlab
end end
def read_zip_file!(file_path) def read_zip_file!(file_path)
if ::Feature.enabled?(:ci_new_artifact_file_reader, job.project, default_enabled: false) if ::Feature.enabled?(:ci_new_artifact_file_reader, job.project, default_enabled: :yaml)
read_with_new_artifact_file_reader(file_path) read_with_new_artifact_file_reader(file_path)
else else
read_with_legacy_artifact_file_reader(file_path) read_with_legacy_artifact_file_reader(file_path)
......
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