Don't timestamp strace logs otherwise it runs as anew container each time since the command changes

This commit is contained in:
James Allen 2016-03-30 10:59:01 +01:00
parent da7b8b99fb
commit 66fa6a3e2e

View file

@ -28,7 +28,7 @@ module.exports = LatexRunner =
return callback new Error("unknown compiler: #{compiler}")
if Settings.clsi?.strace
command = ["strace", "-o", "strace-#{Date.now()}", "-ff"].concat(command)
command = ["strace", "-o", "strace", "-ff"].concat(command)
CommandRunner.run project_id, command, directory, image, timeout, (error, output) ->
return callback(error) if error?