After many days I have a working celery and celery beat task list, and the results are stored using django_celery_results. However when I look at the table record, it hasn't got any useful information in there.
is it possible to set the task id to something human readable?
one example would be using the demo task, it returns the no, but an unreadable task id
tasks.py
@app.taskdef test(a,b): return a + b
scheduler in app.settings
CELERYBEAT_SCHEDULE = {'test_task': {'task': 'home.tasks.test','schedule': crontab(minute='*/1'), },