1
0
Fork 0

Allow empty broker and activity redis password

This commit is contained in:
Christof Dorner 2023-01-26 17:18:15 +01:00
parent 80d3474cef
commit afab255c85
2 changed files with 2 additions and 2 deletions

View file

@ -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)