Try:
@app.task(name="periodic_test")def test(a, b): return a+b
This may help to find the task status in the UI, but Celery always needs a unique id for each task execution.
Try:
@app.task(name="periodic_test")def test(a, b): return a+b
This may help to find the task status in the UI, but Celery always needs a unique id for each task execution.