mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
[misc] simplify the naming around waiting for a mongo connection
Co-Authored-By: Eric Mc Sween <eric.mcsween@overleaf.com> Co-Authored-By: Miguel Serrano <mserranom@gmail.com> Co-Authored-By: Simon Detheridge <s@sd.ai>
This commit is contained in:
@@ -23,7 +23,8 @@ if (!module.parent) {
|
||||
settings.internal != null ? settings.internal.chat : undefined,
|
||||
(x1) => x1.host
|
||||
) || 'localhost'
|
||||
mongodb.clientConnecting
|
||||
mongodb
|
||||
.waitForDb()
|
||||
.then(() => {
|
||||
Server.server.listen(port, host, function (err) {
|
||||
if (err) {
|
||||
|
||||
@@ -1,15 +1,19 @@
|
||||
const Settings = require('settings-sharelatex')
|
||||
const { MongoClient, ObjectId } = require('mongodb')
|
||||
|
||||
const clientConnecting = MongoClient.connect(Settings.mongo.url)
|
||||
const dbPromise = clientConnecting.then((client) => client.db())
|
||||
const clientPromise = MongoClient.connect(Settings.mongo.url)
|
||||
const dbPromise = clientPromise.then((client) => client.db())
|
||||
|
||||
async function getCollection(name) {
|
||||
return (await dbPromise).collection(name)
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
clientConnecting,
|
||||
ObjectId,
|
||||
getCollection
|
||||
async function waitForDb() {
|
||||
await clientPromise
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
ObjectId,
|
||||
getCollection,
|
||||
waitForDb
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user