respect mongo bulk operations limit of 1000 operations

This commit is contained in:
Brian Gough 2016-01-05 11:13:13 +00:00
parent bb7153c6c1
commit e1aa436286

View file

@ -9,7 +9,7 @@ ReadlineStream = require "readline-stream"
module.exports = MongoAWS =
MAX_SIZE: 1024*1024 # almost max size
MAX_COUNT: 1024 # almost max count
MAX_COUNT: 512 # almost max count
archiveDocHistory: (project_id, doc_id, update, _callback = (error) ->) ->