Refactor Ci::Build#raw_trace

This commit is contained in:
Tomasz Maczukin 2016-09-01 22:17:05 +02:00
parent 7a3cdd4aa0
commit 52fe609886
No known key found for this signature in database
GPG Key ID: 7E9EB2E4B0F625CD
1 changed files with 2 additions and 5 deletions

View File

@ -217,11 +217,8 @@ module Ci
end
def raw_trace
if File.exist?(path_to_trace)
File.read(path_to_trace)
elsif has_old_trace_file?
# Temporary fix for build trace data integrity
File.read(old_path_to_trace)
if File.exist?(trace_file_path)
File.read(trace_file_path)
else
# backward compatibility
read_attribute :trace