Task name, args, and kwargs are not being saved
panatale1 opened this issue · 2 comments
panatale1 commented
I am using Python 3.11, Django 4.1.8, celery 5.2.7, and django-celery-results 2.5.1, with postgresql as the database and rabbitmq as the message broker.
When I run a task, task name, args, and kwargs are not being added to the TaskResult instance.
I'm using the standard add
test task
def add(x, y):
return x + y
panatale1 commented
@yanhuixie Thank you. I had thought I set that setting, but turns out I'd made a typo. All good now.