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
It works when the redis URL is localhost:6379 but if you have another URL for redis, huey monitor still tries to connect to localhost.
settings:
DJANGO_HUEY = {
"default": "default", # this name must match with any of the queues defined below.
"queues": {
"default": {
"huey_class": "huey.RedisHuey",
"name": "default",
"connection": {"url": "SOME-EXTERNAL-REDIS-URL"},
"consumer": {
"workers": 3,
"worker_type": "thread",
},
},
},
}
Error:
ConnectionError
/admin/huey_monitor/taskmodel/
Error 111 connecting to localhost:6379. Connection refused.
It works when the redis URL is
localhost:6379
but if you have another URL for redis, huey monitor still tries to connect to localhost.settings:
Error:
Error file:
django-huey-monitor/huey_monitor/templatetags/huey_monitor.py
Line 16 in c50a117
The text was updated successfully, but these errors were encountered: