django-background-task icon indicating copy to clipboard operation
django-background-task copied to clipboard

A database-backed work queue for Django

Results 21 django-background-task issues
Sort by recently updated
recently updated
newest added

In my `INSTALLED_APPS`, my_app is not specified as simply as `my_app` but rather as `my_app.apps.MyAppConfig`. ~My tasks are located at `my_app.tasks` but `autodiscover()` looks for them at `my_app.apps.MyAppConfig.tasks` because of...

In my case (Django 1.11, running on Windows, Python 2.7) the arguments to a Django commands are not processed as integers or floats. It means that the `duration` and `sleep`...

I want to run background tasks at the same time, option `BACKGROUND_TASK_RUN_ASYNC` = `true` but i am having a problem. Can you help me?

I'm running `migrate` after installing `background_task` with `Django==1.11.13`, `django-background-tasks==1.1.13` and it won't finish with success. **[EDIT]**: previously installed `django-background-task==0.1.8` with `Django==1.5.1`. In fact the first `migrate` might have been ran...

So, [this is what happens](https://www.reddit.com/r/django/comments/625m18/we_pushed_a_more_stable_and_robust_version_of/dfmc04g/?context=3)... It confuses everyone, and not for the first time. I want to encourage you to remove your version of django-background-task to avoid further confusion. Of...

Hi, I'm very new at Django and all the 3rd party app world. I found yours and it seems very easy to use, I installed it, but when I ran...

I'm using django-background-task with the django-nonrel branch and it seems not to be working because a limitation of django-nonrel itself: when doing model updates, it doesn't return the number of...

When scheduling tasks, is it possible to get the id of the Task object that has been created in the database? That would be really useful, since it would enable...

Hi, I have this error, I'm using Django 1.7 db_exc_type = getattr(self.wrapper.Database, dj_exc_type.**name**) AttributeError: 'DatabaseWrapper' object has no attribute 'Database' That happened when I create the Task

i configure task to be run after 60 seconds, but in database it shows wrong time & task is not running after 60 seconds. @background(schedule=60)