mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
fix redis config (#895)
* fix redis config when using redis on host machine without password auth
This commit is contained in:
parent
4a8f88c4a8
commit
35477973cf
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ settings =
|
|||
web: redisConfig =
|
||||
host: process.env["SHARELATEX_REDIS_HOST"] or "dockerhost"
|
||||
port: process.env["SHARELATEX_REDIS_PORT"] or "6379"
|
||||
password: process.env["SHARELATEX_REDIS_PASS"] or ""
|
||||
password: process.env["SHARELATEX_REDIS_PASS"] or undefined
|
||||
key_schema:
|
||||
# document-updater
|
||||
blockingKey: ({doc_id}) -> "Blocking:#{doc_id}"
|
||||
|
|
Loading…
Reference in a new issue