django-q icon indicating copy to clipboard operation
django-q copied to clipboard

A multiprocessing distributed task queue for Django

Results 143 django-q issues
Sort by recently updated
recently updated
newest added

We have a destop application, which backend uses django. Every time provide a new version will package a software pack. Now I want to introduce django-q to our project for...

I know that Django doesn't officially support Python 3.8 yet, but I tried an upgrade anyway. Django seems to work fine and our project is happy, but `qcluster` crashes on...

Hello, I updated the version from Django Q to the newest one, and suddenly I am getting: > > Message: BadSignature('Signature "rQv3sSym58u1EYYibwMnKOgY43o" does not match',) > Arguments: ('Traceback (most recent...

Currently, inside the pusher method of cluster, errors are handled like so: ```py logger.error(e, traceback.format_exc()) ``` [src](https://github.com/Koed00/django-q/blob/master/django_q/cluster.py#L347) The problem is that this isn't a valid set of arguments for the...

I have been using library a lot and was a bit concerned that it hasn't been updated in over a year. Therefore, I have created a fork in which I...

I'm not sure what's causing this (where's the `setup.py` in this repo...?), but installing django-q into my virtualenv just now, in my first attempts to check it out and see...

/usr/local/lib/python3.10/site-packages/django_q/migrations/0010_auto_20220906_1144.py `class Migration(migrations.Migration): dependencies = [ ('django_q', '0009_auto_20171009_0915'), ] operations = [ migrations.AlterField( model_name='task', name='args', field=picklefield.fields.PickledObjectField(editable=False, null=True, protocol=-1), ), migrations.AlterField( model_name='task', name='kwargs', field=picklefield.fields.PickledObjectField(editable=False, null=True, protocol=-1), ), migrations.AlterField( model_name='task', name='result', field=picklefield.fields.PickledObjectField(editable=False,...

I have upgraded my Python system to 3.8.14 from 3.7 and now when i try to send an email i receive this error `TypeError: cannot pickle '_io.TextIOWrapper' object` Im working...

Error: (1366, "Incorrect int value: 'fa6dc4d395834f279e84a861509a302a' for column 'id' at row 1") Its expecting an int instead of a UUID for the ID Location: app | django-q function | save_task...