mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-03 03:11:48 +00:00
Fix container monitor cleanup function
The intent here is clearly to clear both the timeout and the interval.
This commit is contained in:
parent
30a44edded
commit
a853950a99
1 changed files with 2 additions and 2 deletions
|
@ -611,8 +611,8 @@ const DockerRunner = {
|
|||
containerMonitorTimeout = undefined
|
||||
}
|
||||
if (containerMonitorInterval) {
|
||||
clearInterval(containerMonitorTimeout)
|
||||
containerMonitorTimeout = undefined
|
||||
clearInterval(containerMonitorInterval)
|
||||
containerMonitorInterval = undefined
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue