make Settings.parallelSqlQueryLimit a config setting

This commit is contained in:
Henry Oswald 2018-07-31 14:38:24 +01:00
parent cd5bcdd7ca
commit ac4d07352f
2 changed files with 4 additions and 2 deletions

View file

@ -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

View file

@ -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"]