mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-31 22:32:00 +00:00
Killing an already stopped project is not an error
Log a warning instead and continue.
This commit is contained in:
parent
65eaf0ad10
commit
4b14de05c9
1 changed files with 2 additions and 1 deletions
|
@ -58,7 +58,8 @@ module.exports = LatexRunner =
|
||||||
id = "#{project_id}"
|
id = "#{project_id}"
|
||||||
logger.log {id:id}, "killing running compile"
|
logger.log {id:id}, "killing running compile"
|
||||||
if not ProcessTable[id]?
|
if not ProcessTable[id]?
|
||||||
return callback new Error("no such project to kill")
|
logger.warn {id}, "no such project to kill"
|
||||||
|
return callback(null)
|
||||||
else
|
else
|
||||||
CommandRunner.kill ProcessTable[id], callback
|
CommandRunner.kill ProcessTable[id], callback
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue