Allow empty broker and activity redis password
This commit is contained in:
parent
80d3474cef
commit
afab255c85
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
from bookwyrm.settings import *
|
||||
|
||||
# pylint: disable=line-too-long
|
||||
REDIS_BROKER_PASSWORD = requests.utils.quote(env("REDIS_BROKER_PASSWORD", None))
|
||||
REDIS_BROKER_PASSWORD = requests.utils.quote(env("REDIS_BROKER_PASSWORD", ""))
|
||||
REDIS_BROKER_HOST = env("REDIS_BROKER_HOST", "redis_broker")
|
||||
REDIS_BROKER_PORT = env("REDIS_BROKER_PORT", 6379)
|
||||
REDIS_BROKER_DB_INDEX = env("REDIS_BROKER_DB_INDEX", 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue