-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Celery task results are not stored in the Django database #450
Comments
Hi @nico2am it looks like your task explicitly says to not store and ignore the results
Could you please check if results are stored when removing |
Hello, I check and I donn't have ignore_result, this is my configuration: celery.py
tasks/tasks.py
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Celery task results are not stored in the Django database
Environment
Description
Tasks are visible in Flower but are not being saved to the database task results table. The issue persists despite using the recommended configuration from the documentation and various solutions found in other issues and forums.
Current Configuration
Django Settings
Celery Configuration (celery.py)
Attempted Solution
I've implemented a signal handler to manually track task completion and save results:
The signal handler successfully creates records in the database, but the default Celery result backend still isn't saving results automatically as expected.
Questions
Additional Information
Any help or guidance would be greatly appreciated!
The text was updated successfully, but these errors were encountered: