django-rq
django-rq copied to clipboard
A simple app that provides django integration for RQ (Redis Queue)
Hi, I am working on an app where a user can submit multiple jobs. Currently, we were able to execute only one job and others jobs are waiting in the...
Ability to change job timeout from its detail. Useful when settings are changed.
Hi, I encountered the following warning running our tests with warnings enabled: ``` ... File "/buildbot/worker/worker/backend_tests/build/env/lib/python3.7/site-packages/django/template/backends/django.py", line 25, in __init__ options['libraries'] = self.get_templatetag_libraries(libraries) File "/buildbot/worker/worker/backend_tests/build/env/lib/python3.7/site-packages/django/template/backends/django.py", line 43, in get_templatetag_libraries libraries...
Hi, I have a very strange bug with the "Empty queue" feature in admin: - I have some failed or finished jobs to clear. - I go on the jobs...
Here is my code, but it doesn't work. ``` settings.py: RQ_EXCEPTION_HANDLERS=['path.to.handler'] def handler(job, exc_type, exc_value, traceback): callback = job.kwargs['callback'] callback(exc_type, exc_value, traceback) ```
Hello, The function `rq/handle_exception` does not get called to walk the exception handler stack. This is what I see just after the job crashes: ``` terminate called after throwing an...
Sorry if this is not exactly a feature request, maybe it's a documentation request? Is there any way to debounce jobs? i.e. execute only the last of N job calls...
Hi! django-rq currently supports passing custom options to the Redis client by specifying `REDIS_CLIENT_KWARGS` inside the `RQ_QUEUES` config entry: https://github.com/rq/django-rq/blob/11527cfdc6408b9c23c24255f8684b61860cc671/django_rq/queues.py#L127 For example: ```py RQ_QUEUES = { 'default': { // ......
I'm in the process of upgrading my site from Django 3.0 to 3.2. Django 3.2 seems to have introduced a new sidebar UI in the admin. * If I go...