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

I'm using: * Django 2.2.2 * Python 3.7.3 * django-background-task 0.1.8 When starting Django, startup fails with `ModuleNotFoundError: No module named 'StringIO'`. The reason seems to be that `StringIO` module...

I'm using: * Django 2.2.2 * Python 3.7.3 * django-background-task 0.1.8 To circumvent #28 , I applied this patch to `models.py`: ``` --- models.py 2019-06-27 13:20:34.467204000 +0000 +++ models.py_ 2019-06-27...

Hi i am handling an exception in a background_task. Running the code alone works fine, but when i want to run it as a background_task there is always an error...

I tried to install supervisord but could never make it work. always exiting right after launch: 2020-07-06 15:57:56,453 INFO supervisord started with pid 27437 2020-07-06 15:57:57,457 INFO spawned: 'tasks' with...

my code: ``` @background(schedule=60) def g_trends(request): get_trends() return HttpResponse('hello') ``` when i run code in django and i get to my url for that function i get this error: **Object...

I have added this code to my models. I want the background task to run only once per minute. So i gave the value for schedule as 60 (seconds) and...

Changed imports in models.py to absolute importing Task from local models for Python3 compatibility

Changed imports in models.py to importing StringIO from io instead of StringIO in Python3

Hi, I was using background taks in production mode and everything was going fine. Now I just deployed my django app on a server with Apache2 and sqlite3 and Django...

When running 'python manage.py' after adding background-task in installed apps, I am getting following error 'AttributeError: 'module' object has no attribute 'autocommit'. Full output is as follow. --- Traceback (most...