mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
[PackWorker] fix the db cleanup process -- we do not expose db.close
This commit is contained in:
parent
41a65ee41e
commit
2c8916f2e0
2 changed files with 15 additions and 2 deletions
|
@ -15,10 +15,11 @@
|
|||
*/
|
||||
let LIMIT, pending
|
||||
let project_id, doc_id
|
||||
const { callbackify } = require('util')
|
||||
const Settings = require('settings-sharelatex')
|
||||
const async = require('async')
|
||||
const _ = require('underscore')
|
||||
const { db, ObjectId, waitForDb } = require('./mongodb')
|
||||
const { db, ObjectId, waitForDb, closeDb } = require('./mongodb')
|
||||
const fs = require('fs')
|
||||
const Metrics = require('metrics-sharelatex')
|
||||
Metrics.initialize('track-changes')
|
||||
|
@ -84,7 +85,7 @@ const finish = function () {
|
|||
clearTimeout(shutDownTimer)
|
||||
}
|
||||
logger.log('closing db')
|
||||
return db.close(function () {
|
||||
callbackify(closeDb)(function () {
|
||||
logger.log('closing LockManager Redis Connection')
|
||||
return LockManager.close(function () {
|
||||
logger.log(
|
||||
|
|
|
@ -23,8 +23,20 @@ async function setupDb() {
|
|||
db.projectHistoryMetaData = internalDb.collection('projectHistoryMetaData')
|
||||
}
|
||||
|
||||
async function closeDb() {
|
||||
let client
|
||||
try {
|
||||
client = await clientPromise
|
||||
} catch (e) {
|
||||
// there is nothing to close
|
||||
return
|
||||
}
|
||||
return client.close()
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
db,
|
||||
ObjectId,
|
||||
closeDb,
|
||||
waitForDb
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue