mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-29 02:53:48 -05:00
Update config/settings.defaults.js
parseint on dispatcher count Co-authored-by: John Lees-Miller <jdleesmiller@gmail.com>
This commit is contained in:
parent
11c8cfc939
commit
40de999766
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ module.exports = {
|
||||||
maxJsonRequestSize:
|
maxJsonRequestSize:
|
||||||
parseInt(process.env.MAX_JSON_REQUEST_SIZE, 10) || 8 * 1024 * 1024,
|
parseInt(process.env.MAX_JSON_REQUEST_SIZE, 10) || 8 * 1024 * 1024,
|
||||||
|
|
||||||
dispatcherCount: process.env.DISPATCHER_COUNT || 10,
|
dispatcherCount: parseInt(process.env.DISPATCHER_COUNT || 10, 10)
|
||||||
|
|
||||||
mongo: {
|
mongo: {
|
||||||
options: {
|
options: {
|
||||||
|
|
Loading…
Reference in a new issue