Skip to content

Commit

Permalink
Fix Celery not running
Browse files Browse the repository at this point in the history
  • Loading branch information
georgehelman committed Nov 11, 2024
1 parent e695653 commit 25773a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
# ------------------------------------------------------------------------------
REDIS_URL = env("REDIS_URL", default="")
if REDIS_URL:
BROKER_URL = f"{REDIS_URL}/1"
CELERY_RESULT_BACKEND = f"{REDIS_URL}/1"
BROKER_URL = f"{REDIS_URL}/1?ssl_cert_reqs=none"
CELERY_RESULT_BACKEND = f"{REDIS_URL}/1?ssl_cert_reqs=none"

# SECURITY
# ------------------------------------------------------------------------------
Expand Down

0 comments on commit 25773a8

Please sign in to comment.