mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
a540754f6e
[misc] bulk replace localhost with 127.0.0.1 GitOrigin-RevId: d238f3635302e8ff5500d611108c4d1bef216726
27 lines
670 B
JavaScript
27 lines
670 B
JavaScript
const app = require('../../../../app')
|
|
require('@overleaf/logger').logger.level('error')
|
|
const settings = require('@overleaf/settings')
|
|
|
|
module.exports = {
|
|
running: false,
|
|
initing: false,
|
|
callbacks: [],
|
|
ensureRunning(callback) {
|
|
if (this.running) {
|
|
return callback()
|
|
} else if (this.initing) {
|
|
return this.callbacks.push(callback)
|
|
}
|
|
this.initing = true
|
|
this.callbacks.push(callback)
|
|
app.listen(settings.internal.docstore.port, '127.0.0.1', error => {
|
|
if (error != null) {
|
|
throw error
|
|
}
|
|
this.running = true
|
|
for (callback of Array.from(this.callbacks)) {
|
|
callback()
|
|
}
|
|
})
|
|
},
|
|
}
|