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
The Flask apps and their workers appear to work as intended with their queues in separate DB spaces of the same Redis instance.
Here is my problem:
I would like to be able to select the redis URL including the DB from the drop-down selection box to switch between the message queues of the individual services. I tried the following:
I tried this because the help message to the option -u says that it can be specified multiple times.
It appears as if only the last (right-most) URL takes effect and is listed in the dropdown selection box on the UI.
No other URL is listed in the dropdown selection box and can be switched to.
Do I do something wrong here? Is this behaviour intended?
I am using
RQ-dashboard version: 0.6.1
Python RQ version: 1.6.1
My current work-around is to include RQ-Dashboard in each Flask App and be specific about its URL including the DB number: app config RQ_DASHBOARD_REDIS_URL = "redis://:[email protected]:6379/1".
The text was updated successfully, but these errors were encountered:
I am using one redis-server instance as message broker for several services (Flask apps) and point them to different DBs of that instance.
FlaskApp-0:
FlaskApp-1:
The Flask apps and their workers appear to work as intended with their queues in separate DB spaces of the same Redis instance.
Here is my problem:
I would like to be able to select the redis URL including the DB from the drop-down selection box to switch between the message queues of the individual services. I tried the following:
RQ-Dashboard:
I tried this because the help message to the option
-u
says that it can be specified multiple times.It appears as if only the last (right-most) URL takes effect and is listed in the dropdown selection box on the UI.
No other URL is listed in the dropdown selection box and can be switched to.
Do I do something wrong here? Is this behaviour intended?
I am using
My current work-around is to include RQ-Dashboard in each Flask App and be specific about its URL including the DB number: app config
RQ_DASHBOARD_REDIS_URL = "redis://:[email protected]:6379/1"
.The text was updated successfully, but these errors were encountered: