Merge pull request #11930 from overleaf/ds-regex-timeout-fix

Admin panel- Regex search timeout fix

GitOrigin-RevId: 79f01d3623bbb6e810dc584cb9aa6614da7d52f0
This commit is contained in:
Davinder Singh
2023-02-22 15:09:06 +00:00
committed by Copybot
parent fa03c7de31
commit 3c7fa5c42f
+1 -1
View File
@@ -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 ||