You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are couple errors in Sentinel connection creating.
According to official Python redis docs, you should call Sentinel with passing dicitonary to parameter sentinel_kwargs, not parameters from this dict themselves
To make connection work you should pass parameter "password" to sentinel.master_for() method
For my project I just corrected queues.py myself and replaced old queues.py
Correct code below
django-rq/django_rq/queues.py
Lines 113 to 123 in e05eb8a
There are couple errors in
Sentinel
connection creating.sentinel_kwargs
, not parameters from this dict themselvesFor my project I just corrected
queues.py
myself and replaced oldqueues.py
Correct code below
The text was updated successfully, but these errors were encountered: