mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-06 18:29:07 +00:00
Use _.once() instead of ad hoc implementation
This commit is contained in:
parent
a853950a99
commit
5cd889038e
1 changed files with 2 additions and 11 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue