1
0
Fork 0

Show import queue in Celery admin

This commit is contained in:
Mouse Reeve 2023-01-26 07:52:37 -08:00
parent 9c3c34834f
commit ef48149844
2 changed files with 10 additions and 3 deletions

View file

@ -36,6 +36,7 @@ class CeleryStatus(View):
"low_priority": r.llen("low_priority"),
"medium_priority": r.llen("medium_priority"),
"high_priority": r.llen("high_priority"),
"imports": r.llen("imports"),
}
# pylint: disable=broad-except
except Exception as err: