compressedUpdates are now never inserted with inS3

it is now always added later, and a new update is forced for any
addition to an archived update
This commit is contained in:
Brian Gough 2015-09-23 13:25:10 +01:00
parent d6b827426c
commit 551e8334cf

View file

@ -59,7 +59,6 @@ module.exports = MongoManager =
insertCompressedUpdate: (project_id, doc_id, update, temporary, callback = (error) ->) -> insertCompressedUpdate: (project_id, doc_id, update, temporary, callback = (error) ->) ->
inS3 = update.inS3?
update = { update = {
doc_id: ObjectId(doc_id.toString()) doc_id: ObjectId(doc_id.toString())
project_id: ObjectId(project_id.toString()) project_id: ObjectId(project_id.toString())
@ -67,8 +66,6 @@ module.exports = MongoManager =
meta: update.meta meta: update.meta
v: update.v v: update.v
} }
if inS3
update.inS3 = true
if temporary if temporary
seconds = 1000 seconds = 1000