summaryrefslogtreecommitdiff
path: root/app/presenters
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-10-27 21:09:58 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-10-27 21:09:58 +0000
commit1f992463a93d2db88a661dd2a60a1f0a81375f44 (patch)
tree396a12aa7f82d2c7e2ebf672fda9993796eae5cf /app/presenters
parentbd746eebdc82ea3731b38cd903a999569ff3b8be (diff)
downloadgitlab-ce-1f992463a93d2db88a661dd2a60a1f0a81375f44.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/presenters')
-rw-r--r--app/presenters/ci/build_runner_presenter.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/presenters/ci/build_runner_presenter.rb b/app/presenters/ci/build_runner_presenter.rb
index 706608e3029..e3b992ff49e 100644
--- a/app/presenters/ci/build_runner_presenter.rb
+++ b/app/presenters/ci/build_runner_presenter.rb
@@ -33,9 +33,8 @@ module Ci
end
def runner_variables
- stop_expanding_file_vars = ::Feature.enabled?(:ci_stop_expanding_file_vars_for_runners, project)
variables
- .sort_and_expand_all(keep_undefined: true, expand_file_vars: !stop_expanding_file_vars, project: project)
+ .sort_and_expand_all(keep_undefined: true, expand_file_vars: false, project: project)
.to_runner_variables
end