mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-31 04:41:32 +02:00
write to doc collection first
This commit is contained in:
@@ -48,11 +48,10 @@ module.exports = DocManager =
|
||||
rev: doc.rev
|
||||
}, "updating doc lines"
|
||||
async.series [
|
||||
(cb)->
|
||||
# project collection is still primary so that needs to be successful first
|
||||
MongoManager.updateDoc project_id, mongoPath, lines, cb
|
||||
(cb)->
|
||||
MongoManager.upsertIntoDocCollection project_id, doc_id, lines, doc.rev, cb
|
||||
(cb)->
|
||||
MongoManager.updateDoc project_id, mongoPath, lines, cb
|
||||
], (error)->
|
||||
return callback(error) if error?
|
||||
callback null, true, doc.rev + 1 # rev will have been incremented in mongo by MongoManager.updateDoc
|
||||
|
||||
Reference in New Issue
Block a user