summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2019-02-18 11:30:31 +0100
committermfluharty <mfluharty@gitlab.com>2019-02-20 11:20:33 -0700
commitfc3063dd139551b714716a31c655911073c27f3f (patch)
tree52099a2eee31e8101a82200ed400abc1a64ba5cb
parent7a7723e858e07ca816895483b84178c762c6858e (diff)
downloadgitlab-ce-fc3063dd139551b714716a31c655911073c27f3f.tar.gz
Enable persisted pipeline stages by default
-rw-r--r--app/models/ci/pipeline.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/ci/pipeline.rb b/app/models/ci/pipeline.rb
index 372f6d678f6..f0ae516a2f8 100644
--- a/app/models/ci/pipeline.rb
+++ b/app/models/ci/pipeline.rb
@@ -315,7 +315,7 @@ module Ci
def ordered_stages
return legacy_stages unless complete?
- if Feature.enabled?('ci_pipeline_persisted_stages')
+ if Feature.enabled?('ci_pipeline_persisted_stages', default_enabled: true)
stages
else
legacy_stages