Skip to content

Commit

Permalink
removed extra slashes in CELERY_BROKER_URL (celery#5792)
Browse files Browse the repository at this point in the history
The Celery broker URL in settings.py had 2 slashes in the end which are not required and can be misleading.
so I changed :-
CELERY_BROKER_URL = 'amqp://guest:guest@localhost//' to CELERY_BROKER_URL = 'amqp://guest:guest@localhost'
  • Loading branch information
jainal09 authored and auvipy committed Oct 23, 2019
1 parent e1e7b65 commit e9159cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/django/proj/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# Celery settings

CELERY_BROKER_URL = 'amqp://guest:guest@localhost//'
CELERY_BROKER_URL = 'amqp://guest:guest@localhost'

#: Only add pickle to this list if your broker is secured
#: from unwanted access (see userguide/security.html)
Expand Down

0 comments on commit e9159cf

Please sign in to comment.