Remove redundant $REDIS_BROKER_SSL setting

A fix was already pushed upstream that made this setting unnecessary
This commit is contained in:
Kyle Lacy 2023-04-17 12:37:57 -07:00
parent e22f552ea0
commit 792162ae66
No known key found for this signature in database
GPG Key ID: 82616D2392FB6605
2 changed files with 0 additions and 2 deletions

View File

@ -3,7 +3,6 @@ DJANGO_SETTINGS_MODULE="plane.settings.production"
DATABASE_URL=postgres://plane:xyzzyspoon@db:5432/plane
# Cache
REDIS_URL=redis://redis:6379/
REDIS_BROKER_SSL=0
# SMTP
EMAIL_HOST=""
EMAIL_HOST_USER=""

View File

@ -239,7 +239,6 @@ SLACK_BOT_TOKEN = os.environ.get("SLACK_BOT_TOKEN", False)
LOGGER_BASE_URL = os.environ.get("LOGGER_BASE_URL", False)
broker_ssl = os.environ.get("REDIS_BROKER_SSL", "1") == "1"
redis_url = os.environ.get("REDIS_URL")
broker_url = f"{redis_url}?ssl_cert_reqs={ssl.CERT_NONE.name}&ssl_ca_certs={certifi.where()}"