[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:
Jakob Ackermann 2020-08-24 17:06:30 +01:00
parent d345911730
commit 39ea30355e
2 changed files with 12 additions and 7 deletions

View file

@ -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) {

View file

@ -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
}