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 links in the footer lead to 404 when launching flower with --url-prefix.
To Reproduce
Steps to reproduce the behavior:
Launch flower with the --url-prefix. Here proj is any representative celery project.
celery -A proj flower --url-prefix=flower
Putting a trailing slash (as mentioned in #1207) does not help. Using --url-prefix=flower/ has the same behavior.
This starts flower at http://0.0.0.0:5555/flower/
2. Launch a few tasks from the celery project, so that there are non-zero processed tasks
3. Click on (or hover over) the number of processed tasks (in the above case, the value 10)
4. This redirects to http://0.0.0.0:5555/tasks and gives a 404 (screenshot below).
Expected behavior
It should have redirected to http://0.0.0.0:5555/flower/tasks. The url-prefix is missing.
Screenshots
System information
Output of python -c 'from flower.utils import bugreport; print(bugreport())' command
Describe the bug
The links in the footer lead to 404 when launching flower with
--url-prefix
.To Reproduce
Steps to reproduce the behavior:
--url-prefix
. Hereproj
is any representative celery project.Putting a trailing slash (as mentioned in #1207) does not help. Using
--url-prefix=flower/
has the same behavior.This starts flower at
http://0.0.0.0:5555/flower/
2. Launch a few tasks from the celery project, so that there are non-zero processed tasks
3. Click on (or hover over) the number of processed tasks (in the above case, the value 10)
4. This redirects to
http://0.0.0.0:5555/tasks
and gives a 404 (screenshot below).Expected behavior
It should have redirected to
http://0.0.0.0:5555/flower/tasks
. The url-prefix is missing.Screenshots
System information
Output of
python -c 'from flower.utils import bugreport; print(bugreport())'
commandThe text was updated successfully, but these errors were encountered: