Commit ffacc06e authored by Shinya Maeda's avatar Shinya Maeda

Ignore writing traces if it's already been archived

parent 014f5f6a
......@@ -77,7 +77,9 @@ module Gitlab
def write(mode)
stream = Gitlab::Ci::Trace::Stream.new do
if current_path
if trace_artifact
# no op. It's already archived.
elsif current_path
File.open(current_path, mode)
elsif Feature.enabled?('ci_enable_live_trace')
Gitlab::Ci::Trace::ChunkedIO.new(job)
......
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