mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 08:45:29 +00:00
don't error on a bad synctex call
This commit is contained in:
parent
250f4a42f0
commit
905a761544
2 changed files with 2 additions and 6 deletions
|
@ -209,11 +209,7 @@ module.exports = CompileManager =
|
|||
return callback(error)
|
||||
CompileManager._runSynctex project_id, user_id, command, (error, stdout) ->
|
||||
return callback(error) if error?
|
||||
if stdout.toLowerCase().indexOf("warning") == -1
|
||||
logType = "log"
|
||||
else
|
||||
logType = "err"
|
||||
logger[logType] project_id: project_id, user_id:user_id, file_name: file_name, line: line, column: column, command:command, stdout: stdout, "synctex code output"
|
||||
logger.log project_id: project_id, user_id:user_id, file_name: file_name, line: line, column: column, command:command, stdout: stdout, "synctex code output"
|
||||
callback null, CompileManager._parseSynctexFromCodeOutput(stdout)
|
||||
|
||||
syncFromPdf: (project_id, user_id, page, h, v, callback = (error, filePositions) ->) ->
|
||||
|
|
|
@ -109,7 +109,7 @@ module.exports = DockerRunner =
|
|||
err.code = exitCode
|
||||
return callback(err)
|
||||
containerReturned = true
|
||||
options.SecurityOpt = null #small log line
|
||||
options?.HostConfig?.SecurityOpt = null #small log line
|
||||
logger.log err:err, exitCode:exitCode, options:options, "docker container has exited"
|
||||
callbackIfFinished()
|
||||
|
||||
|
|
Loading…
Reference in a new issue