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:
Henry Oswald 2015-06-02 12:39:49 +01:00
parent 60bc7bf4e1
commit ea92f57acc
2 changed files with 3 additions and 5 deletions

View file

@ -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()

View file

@ -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)