summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-06-11 12:14:53 -0700
committerStan Hu <stanhu@gmail.com>2019-06-11 12:14:53 -0700
commitb8d8c35c439fe837341a70681aafb41e43941364 (patch)
tree1b92cc2f7ca858485291f8607b5980259d98101a
parent9bf141cf718ab9ca770c3bd6b7e2c6719cbe9da7 (diff)
downloadgitlab-ce-sh-disable-ci-variables-complex-expressions.tar.gz
Disable ci_variables_complex_expressions feature flagsh-disable-ci-variables-complex-expressions
This was causing PostReceive jobs to fail in https://gitlab.com/gitlab-org/gitlab-ce/issues/63115, so let's disable it by default.
-rw-r--r--lib/gitlab/ci/pipeline/expression/lexeme/matches.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/ci/pipeline/expression/lexeme/matches.rb b/lib/gitlab/ci/pipeline/expression/lexeme/matches.rb
index ecfab627226..4dd259981cc 100644
--- a/lib/gitlab/ci/pipeline/expression/lexeme/matches.rb
+++ b/lib/gitlab/ci/pipeline/expression/lexeme/matches.rb
@@ -36,7 +36,7 @@ module Gitlab
private
def ci_variables_complex_expressions?
- Feature.enabled?(:ci_variables_complex_expressions, default_enabled: true)
+ Feature.enabled?(:ci_variables_complex_expressions, default_enabled: false)
end
end
end