Releases: uptick/django-cq
Releases · uptick/django-cq
3.2.3
136b37e
Increased requeue lock timeout to avoid spamming exceptions if there's a lot of tasks to requeue or the server is slow.
0.3.2
- Improved error logging when a Queued Task cannot be found in the database. Now prints the id of said Task.
0.3.1
Fixed a bug where the Task
isn't accessible yet in apps.ready because migrations hadn't been run.
0.3
Implemented a bandaid fix for addressing Queued
tasks getting stuck in Queued
if the worker was rebooted.
- On reboot,
Queued
tasks will be set to Retry
so that they are picked up again by the worker.
Please make sure you have no Tasks stuck in Queued
when upgrading to this version.
While this behaviour is not ideal, it will improve reliability. The intention is to fix the underlying cause at a later date.
0.2.3
Added kwargs column to django admin.
0.2.1
No functional changes, just added some missing requirements to setup file.
0.2.0
#21 Merged in a bunch of stuff that had been on the feature/channels-v2
branch for a while:
- Updated to run with Django Channels 2.
- Scheduler now runs on the worker.
- Improved logging.
- Redis keys can now be prefixed.
#20 Added Django 2.1 support (thanks @destos!)