In one of my celery tasks, I'm creating database entries. I know how to read the status of my celery tasks :
from celery.result import AsyncResult
res = AsyncResult("my-task-id")
res.ready()
But I want to know that exactly which database entry was created on a specific task by using a celery task ID. How can I do this?
Thanks in advance.