mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05: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: {
|
||||
port:
|
||||
process.env.NEW_HISTORY_REDIS_PORT || process.env.REDIS_PORT || '6379',
|
||||
port: process.env.HISTORY_REDIS_PORT || process.env.REDIS_PORT || '6379',
|
||||
host:
|
||||
process.env.NEW_HISTORY_REDIS_HOST ||
|
||||
process.env.REDIS_HOST ||
|
||||
'localhost',
|
||||
process.env.HISTORY_REDIS_HOST || process.env.REDIS_HOST || 'localhost',
|
||||
password:
|
||||
process.env.NEW_HISTORY_REDIS_PASSWORD ||
|
||||
process.env.REDIS_PASSWORD ||
|
||||
'',
|
||||
process.env.HISTORY_REDIS_PASSWORD || process.env.REDIS_PASSWORD || '',
|
||||
maxRetriesPerRequest: parseInt(
|
||||
process.env.REDIS_MAX_RETRIES_PER_REQUEST || '20'
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue