mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 16:11:22 +00:00
point where we unset doc lines also search on doc rev to make sure
the document has not been updated
This commit is contained in:
parent
60bc7bf4e1
commit
ea92f57acc
2 changed files with 3 additions and 5 deletions
|
@ -89,7 +89,7 @@ module.exports = DocManager =
|
|||
if err? || res.statusCode != 200
|
||||
logger.err err:err, res:res, "something went wrong archiving doc in aws"
|
||||
callback(err)
|
||||
MongoManager.markDocAsArchived doc._id, (error) ->
|
||||
MongoManager.markDocAsArchived doc._id, doc.rev, (error) ->
|
||||
return callback(error) if error?
|
||||
callback()
|
||||
|
||||
|
|
|
@ -28,14 +28,12 @@ module.exports = MongoManager =
|
|||
db.docs.update _id: ObjectId(doc_id), update, (err)->
|
||||
callback(err)
|
||||
|
||||
markDocAsArchived: (doc_id, callback)->
|
||||
markDocAsArchived: (doc_id, rev, callback)->
|
||||
update =
|
||||
$set: {}
|
||||
$unset: {}
|
||||
update.$set["inS3"] = true
|
||||
update.$unset["lines"] = true
|
||||
# to ensure that the lines have not changed during the archive process
|
||||
# what if we passed the lines through into the query {_id: doc_id, lines:lines}
|
||||
# or more performant would be todo the rev {_id:doc_id, rev:rev}
|
||||
# to ensure that the lines have not changed during the archive process we search via the rev
|
||||
db.docs.update _id: doc_id, update, (err)->
|
||||
callback(err)
|
Loading…
Reference in a new issue