mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 08:55:47 +00:00
respect mongo bulk operations limit of 1000 operations
This commit is contained in:
parent
bb7153c6c1
commit
e1aa436286
1 changed files with 1 additions and 1 deletions
|
@ -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) ->) ->
|
||||
|
||||
|
|
Loading…
Reference in a new issue