django-background-tasks
django-background-tasks copied to clipboard
A database-backed work queue for Django
The tasks module imports `imp` in its `autodiscover()` function. However, this module is deprecated since Python 3.4 and has been completely removed in Python 12. **How to reproduce :** Assuming...
Hello, I found a case when a repetitive task should not be marked as failed after it reached the max_attempts params. Imagine, for this example, thath the MAX_ATTEMPTS param is...
I have noticed that on windows when I run process_tasks it tends to hang after it's second loop of checking for new tasks to process. I am not sure what...
I've been using `django-background-tasks` since Django 2.0, no problem. Even with Django 3.1, no problem ([this article for 3.1 explains all the necessary steps quite well](https://stackoverflow.com/questions/30816134/how-to-use-django-background-tasks)) Recently I migrated to...
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...
Is there a way to change the default db connection?
Hi, Firstly, thanks for all your hard work on this excellent package! I have a strange issue that I'm at a loss on how to troubleshoot. - manage.py process_tasks will...
This repo will be moved to https://github.com/django-background-tasks and need a new Captain and a new Quartermaster. Intend to do the same as we did a few weeks ago here https://github.com/django-hijack/django-hijack/issues/209....
I am using django-background tasks to process file- extract data and perform some activity and save the data to db. When ever I upload a file, the job is getting...