Skip to content

Commit

Permalink
fix: typo in settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Gray-Advantage committed Jul 24, 2024
1 parent 613eeef commit 76429d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datanar/datanar/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@

CELERY_BROKER_URL = (
f"redis://{config('DATANAR_REDIS_HOST', default='localhost', cast=str)}:"
f":{config('DATANAR_REDIS_PORT', default='6379', cast=str)}"
f"/{config('DATANAR_REDIS_DB', default='0', cast=str)}"
f"{config('DATANAR_REDIS_PORT', default='6379', cast=str)}/"
f"{config('DATANAR_REDIS_DB', default='0', cast=str)}"
)
CELERY_RESULT_BACKEND = (
f"redis://{config('DATANAR_REDIS_HOST', default='localhost', cast=str)}:"
Expand Down

0 comments on commit 76429d6

Please sign in to comment.