Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/ci/build_trace.rb')
-rw-r--r--app/models/ci/build_trace.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/models/ci/build_trace.rb b/app/models/ci/build_trace.rb
index f70e1ed69ea..b9a74102641 100644
--- a/app/models/ci/build_trace.rb
+++ b/app/models/ci/build_trace.rb
@@ -12,7 +12,11 @@ module Ci
if stream.valid?
stream.limit
- @trace = Gitlab::Ci::Ansi2json.convert(stream.stream, state)
+ @trace = Gitlab::Ci::Ansi2json.convert(
+ stream.stream,
+ state,
+ verify_state: Feature.enabled?(:sign_and_verify_ansi2json_state, build.project)
+ )
end
end