mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #8546 from overleaf/bg-fix-docupdater-history-redis
[document-updater] docsWithHistoryOps should use the main rclient GitOrigin-RevId: a86c081ea0b0f02a9d4c36df0ca76dc9aa3bac57
This commit is contained in:
parent
ef8e181dff
commit
e7e4e49d90
2 changed files with 2 additions and 4 deletions
|
@ -12,9 +12,7 @@
|
|||
*/
|
||||
let HistoryRedisManager
|
||||
const Settings = require('@overleaf/settings')
|
||||
const rclient = require('@overleaf/redis-wrapper').createClient(
|
||||
Settings.redis.history
|
||||
)
|
||||
const { rclient } = require('./RedisManager') // docsWithHistoryOps lives in main redis
|
||||
const Keys = Settings.redis.history.key_schema
|
||||
const logger = require('@overleaf/logger')
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ describe('HistoryRedisManager', function () {
|
|||
this.rclient.multi = () => this.rclient
|
||||
this.HistoryRedisManager = SandboxedModule.require(modulePath, {
|
||||
requires: {
|
||||
'@overleaf/redis-wrapper': { createClient: () => this.rclient },
|
||||
'./RedisManager': { rclient: this.rclient },
|
||||
'@overleaf/settings': {
|
||||
redis: {
|
||||
history: (this.settings = {
|
||||
|
|
Loading…
Reference in a new issue