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 faad50ff4c
commit d9b25cdb18

View File

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