mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-06 08:03:25 +00:00
Merge pull request #6171 from overleaf/em-retire-project-history-importer
Stop sending history migration updates to a separate project-history GitOrigin-RevId: 0fdcc84935797a205a05bb32399c19eb1ca7f044
This commit is contained in:
parent
2465a32451
commit
6ddbf23da0
1 changed files with 3 additions and 8 deletions
|
@ -55,16 +55,11 @@ module.exports = {
|
||||||
},
|
},
|
||||||
|
|
||||||
project_history: {
|
project_history: {
|
||||||
port:
|
port: process.env.HISTORY_REDIS_PORT || process.env.REDIS_PORT || '6379',
|
||||||
process.env.NEW_HISTORY_REDIS_PORT || process.env.REDIS_PORT || '6379',
|
|
||||||
host:
|
host:
|
||||||
process.env.NEW_HISTORY_REDIS_HOST ||
|
process.env.HISTORY_REDIS_HOST || process.env.REDIS_HOST || 'localhost',
|
||||||
process.env.REDIS_HOST ||
|
|
||||||
'localhost',
|
|
||||||
password:
|
password:
|
||||||
process.env.NEW_HISTORY_REDIS_PASSWORD ||
|
process.env.HISTORY_REDIS_PASSWORD || process.env.REDIS_PASSWORD || '',
|
||||||
process.env.REDIS_PASSWORD ||
|
|
||||||
'',
|
|
||||||
maxRetriesPerRequest: parseInt(
|
maxRetriesPerRequest: parseInt(
|
||||||
process.env.REDIS_MAX_RETRIES_PER_REQUEST || '20'
|
process.env.REDIS_MAX_RETRIES_PER_REQUEST || '20'
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue