mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #13045 from overleaf/em-check-mongo-transactions
Stop ServerPro/CE from booting if Mongo doesn't support transactions GitOrigin-RevId: b38c4f4ea8e74a80fe732ef5f3fe6fa703b55af1
This commit is contained in:
parent
cc47299f62
commit
b313b99276
2 changed files with 37 additions and 3 deletions
|
@ -54,11 +54,17 @@ mongoose.plugin(schema => {
|
|||
|
||||
mongoose.Promise = global.Promise
|
||||
|
||||
async function getMongoClient() {
|
||||
const mongooseInstance = await connectionPromise
|
||||
return mongooseInstance.connection.getClient()
|
||||
}
|
||||
|
||||
async function getNativeDb() {
|
||||
const mongooseInstance = await connectionPromise
|
||||
return mongooseInstance.connection.db
|
||||
}
|
||||
|
||||
mongoose.getMongoClient = getMongoClient
|
||||
mongoose.getNativeDb = getNativeDb
|
||||
mongoose.connectionPromise = connectionPromise
|
||||
|
||||
|
|
|
@ -1,12 +1,40 @@
|
|||
const { waitForDb } = require('../../../app/src/infrastructure/mongodb')
|
||||
const { ObjectId } = require('mongodb')
|
||||
const { waitForDb, db } = require('../../../app/src/infrastructure/mongodb')
|
||||
const { getMongoClient } = require('../../../app/src/infrastructure/Mongoose')
|
||||
|
||||
waitForDb()
|
||||
async function main() {
|
||||
try {
|
||||
await waitForDb()
|
||||
} catch (err) {
|
||||
console.error('Cannot connect to mongodb')
|
||||
throw err
|
||||
}
|
||||
try {
|
||||
await testTransactions()
|
||||
} catch (err) {
|
||||
console.error("Mongo instance doesn't support transactions")
|
||||
throw err
|
||||
}
|
||||
}
|
||||
|
||||
async function testTransactions() {
|
||||
const mongoClient = await getMongoClient()
|
||||
const session = mongoClient.startSession()
|
||||
try {
|
||||
await session.withTransaction(async () => {
|
||||
await db.users.findOne({ _id: ObjectId() }, { session })
|
||||
})
|
||||
} finally {
|
||||
await session.endSession()
|
||||
}
|
||||
}
|
||||
|
||||
main()
|
||||
.then(() => {
|
||||
console.error('Mongodb is up.')
|
||||
process.exit(0)
|
||||
})
|
||||
.catch(err => {
|
||||
console.error('Cannot connect to mongodb.')
|
||||
console.error(err)
|
||||
process.exit(1)
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue