mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-14 12:04:46 +00:00
Merge pull request #11930 from overleaf/ds-regex-timeout-fix
Admin panel- Regex search timeout fix GitOrigin-RevId: 79f01d3623bbb6e810dc584cb9aa6614da7d52f0
This commit is contained in:
parent
b52c151a6f
commit
e35b6e49d1
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ module.exports = {
|
|||
poolSize: parseInt(process.env.MONGO_POOL_SIZE, 10) || 10,
|
||||
serverSelectionTimeoutMS:
|
||||
parseInt(process.env.MONGO_SERVER_SELECTION_TIMEOUT, 10) || 60000,
|
||||
socketTimeoutMS: parseInt(process.env.MONGO_SOCKET_TIMEOUT, 10) || 30000,
|
||||
socketTimeoutMS: parseInt(process.env.MONGO_SOCKET_TIMEOUT, 10) || 60000,
|
||||
},
|
||||
url:
|
||||
process.env.MONGO_CONNECTION_STRING ||
|
||||
|
|
Loading…
Add table
Reference in a new issue