Use _.once() instead of ad hoc implementation

This commit is contained in:
Eric Mc Sween 2020-09-03 15:52:09 -04:00
parent a853950a99
commit 5cd889038e

View file

@ -137,12 +137,7 @@ const DockerRunner = {
},
_runAndWaitForContainer(options, volumes, timeout, _callback) {
const callback = function (...args) {
_callback(...args)
// Only call the callback once
_callback = function () {}
}
const callback = _.once(_callback)
const { name } = options
let streamEnded = false
@ -463,11 +458,7 @@ const DockerRunner = {
},
waitForContainer(containerId, timeout, _callback) {
const callback = function (...args) {
_callback(...args)
// Only call the callback once
_callback = function () {}
}
const callback = _.once(_callback)
const container = dockerode.getContainer(containerId)