django-rq
django-rq copied to clipboard
A simple app that provides django integration for RQ (Redis Queue)
Bumps [django](https://github.com/django/django) from 3.2.14 to 3.2.15. Commits 653a7bd [3.2.x] Bumped version for 3.2.15 release. b3e4494 [3.2.x] Fixed CVE-2022-36359 -- Escaped filename in Content-Disposition header. cb7fbac [3.2.x] Fixed collation tests on...
I have a recurring job that runs a "check" on a certain object. I enqueue a job with a specific job id, built from a job key and the object's...
Hey, I realized I did schedule jobs with wrong params. I'd like to clean all of them. I am able to delete scheduled jobs in django admin, but I would...
Hi all, issue is below: objc[8104]: +[__NSCFConstantString initialize] may have been in progress in another thread when fork() was called. objc[8104]: +[__NSCFConstantString initialize] may have been in progress in another...
Hey, I'm having this issue on mac OS catalina, and I think it's django-rq related. Not having the same errors by using rq directly (though I haven't been able to...
I have this in my Django settings.py LOGGING = { [snip] 'rq' : { 'handlers':['console'], 'level':'ERROR' }, 'rq.worker' : { 'handlers':['console'], 'level':'ERROR' }, [snip] } And that worked perfect under...
Hello :) I'm using django rq for some long running task, which I would like to provide some feedback about its progress. I hence created a function which is enqueued...
Django 4 has added support for caching with Redis: - [redis-cache-backend](https://docs.djangoproject.com/en/4.0/releases/4.0/#redis-cache-backend) - [Cache ~ Redis](https://docs.djangoproject.com/en/4.0/topics/cache/#redis) I know not everyone can take advantage of this right away, but this might be...
Hello, I am using ubuntu 20.04 django-rq is managed with supervisor When I reboot the server I get this error: ``` Could not connect to Redis instance: Connection closed by...
I'm using GraphQL with django with the help of [graphene](https://docs.graphene-python.org/projects/django/en/latest/) I also posted this question in graphene's github but since the project seems quite inactive by now, I'd thought maybe...