Commit 2dca4d37 authored by Robert May's avatar Robert May

Default-on parallel push checks

This swaps the :parallel_push_checks feature flag to
be on by default. This is to facilitate rolling this
change out to self-managed instances with an option
to disable it.
parent 8be38eb8
...@@ -5,4 +5,4 @@ rollout_issue_url: ...@@ -5,4 +5,4 @@ rollout_issue_url:
milestone: '13.6' milestone: '13.6'
type: ops type: ops
group: group::source_code group: group::source_code
default_enabled: false default_enabled: true
...@@ -7,7 +7,7 @@ module EE ...@@ -7,7 +7,7 @@ module EE
def validate! def validate!
return unless push_rule return unless push_rule
if ::Feature.enabled?(:parallel_push_checks, project, type: :ops) if ::Feature.enabled?(:parallel_push_checks, project, type: :ops, default_enabled: true)
run_checks_in_parallel! run_checks_in_parallel!
else else
run_checks_in_sequence! run_checks_in_sequence!
......
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