django-background-tasks
django-background-tasks copied to clipboard
How can I detect the task errors?
This library captures the exceptions and writes it to last_error field in DB.
If an error comes in task, I want to be able to catch it and send it to Sentry.
Apart from forking the package to include this functionality, is there any other way?
One way I am thinking is keep checking the table for new errors, but would love a way to detect it automatically
Thanks!