mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 22:47:35 +00:00
make Settings.parallelSqlQueryLimit a config setting
This commit is contained in:
parent
cd5bcdd7ca
commit
ac4d07352f
2 changed files with 4 additions and 2 deletions
|
@ -1,13 +1,14 @@
|
|||
async = require "async"
|
||||
Settings = require "settings-sharelatex"
|
||||
|
||||
queue = async.queue((task, cb)->
|
||||
console.log("running task")
|
||||
task(cb)
|
||||
, 1)
|
||||
, Settings.parallelSqlQueryLimit)
|
||||
|
||||
queue.drain = ()->
|
||||
console.log('HI all items have been processed')
|
||||
|
||||
|
||||
module.exports =
|
||||
queue: queue
|
||||
|
||||
|
|
|
@ -36,6 +36,7 @@ module.exports =
|
|||
smokeTest: process.env["SMOKE_TEST"] or false
|
||||
project_cache_length_ms: 1000 * 60 * 60 * 24
|
||||
parallelFileDownloads:1
|
||||
parallelSqlQueryLimit:1
|
||||
filestoreDomainOveride: process.env["FILESTORE_DOMAIN_OVERRIDE"]
|
||||
texliveImageNameOveride: process.env["TEX_LIVE_IMAGE_NAME_OVERRIDE"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue