mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #17327 from overleaf/em-mongo-version-startup-check
Check Mongo version when starting CE/Server Pro GitOrigin-RevId: bd7d28422063f566a4afdc9de970e7f3d0b74ef6
This commit is contained in:
parent
7130a981b7
commit
86b763e3be
1 changed files with 21 additions and 0 deletions
|
@ -2,6 +2,8 @@ const { ObjectId } = require('mongodb')
|
|||
const { waitForDb, db } = require('../../../app/src/infrastructure/mongodb')
|
||||
const { getMongoClient } = require('../../../app/src/infrastructure/Mongoose')
|
||||
|
||||
const MIN_MONGO_VERSION = [5, 0]
|
||||
|
||||
async function main() {
|
||||
try {
|
||||
await waitForDb()
|
||||
|
@ -9,6 +11,9 @@ async function main() {
|
|||
console.error('Cannot connect to mongodb')
|
||||
throw err
|
||||
}
|
||||
|
||||
await checkMongoVersion()
|
||||
|
||||
try {
|
||||
await testTransactions()
|
||||
} catch (err) {
|
||||
|
@ -29,6 +34,22 @@ async function testTransactions() {
|
|||
}
|
||||
}
|
||||
|
||||
async function checkMongoVersion() {
|
||||
const mongoClient = await getMongoClient()
|
||||
const buildInfo = await mongoClient.db().admin().buildInfo()
|
||||
const [major, minor] = buildInfo.versionArray
|
||||
const [minMajor, minMinor] = MIN_MONGO_VERSION
|
||||
|
||||
if (major < minMajor || (major === minMajor && minor < minMinor)) {
|
||||
const version = buildInfo.version
|
||||
const minVersion = MIN_MONGO_VERSION.join('.')
|
||||
console.error(
|
||||
`The MongoDB server has version ${version}, but Overleaf requires at least version ${minVersion}. Aborting.`
|
||||
)
|
||||
process.exit(1)
|
||||
}
|
||||
}
|
||||
|
||||
main()
|
||||
.then(() => {
|
||||
console.error('Mongodb is up.')
|
||||
|
|
Loading…
Reference in a new issue