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

@ -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()}"