Merge pull request #36 from sharelatex/ho-docstore-health-check-cleanup

also delete doc ops
This commit is contained in:
Henry Oswald 2018-11-28 21:34:58 +09:00 committed by GitHub
commit bf84d316f5

View file

@ -36,8 +36,9 @@ module.exports =
cb()
else
cb("health check lines not equal #{body.lines} != #{lines}")
(cb)->
db.docs.remove {_id: doc_id, project_id: project_id}, cb
(cb)->
db.docOps.remove {doc_id: doc_id}, cb
]
async.series jobs, (err)->
if err?
callback(err)
db.docs.remove {_id: doc_id, project_id: project_id}, callback
async.series jobs, callback