mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
increase pack migrate delay to 2 seconds
This commit is contained in:
parent
09e24413e6
commit
34fa398cf6
1 changed files with 3 additions and 1 deletions
|
@ -29,7 +29,9 @@ insertPack = (packObj, callback) ->
|
|||
if err? or result.nInserted != expect_nInserted or result.nRemoved != expect_nRemoved
|
||||
console.log err, result
|
||||
console.log 'nInserted', result.nInserted, 'nRemoved', result.nRemoved
|
||||
setTimeout () ->
|
||||
callback(err, result)
|
||||
, 2000
|
||||
|
||||
packDocHistory = (doc_id, callback) ->
|
||||
util.log "starting pack operation for #{doc_id}"
|
||||
|
|
Loading…
Reference in a new issue