Fix container monitor cleanup function

The intent here is clearly to clear both the timeout and the interval.
This commit is contained in:
Eric Mc Sween 2020-09-03 15:50:45 -04:00
parent 30a44edded
commit a853950a99

View file

@ -611,8 +611,8 @@ const DockerRunner = {
containerMonitorTimeout = undefined
}
if (containerMonitorInterval) {
clearInterval(containerMonitorTimeout)
containerMonitorTimeout = undefined
clearInterval(containerMonitorInterval)
containerMonitorInterval = undefined
}
}
}