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

A simple app that provides django integration for RQ (Redis Queue)

Results 120 django-rq issues
Sort by recently updated
recently updated
newest added

Just got done setting everything up with django-rq and I have to say I am a huge fan of the project so far. My favorite thing, by far, is the...

Autoreloading has been a long-requested RQ feature. Since it seems it's not going to be implemented in a while, I thought that django-rq could use runserver's auto-reloading feature instead. I...

My Django background tasks must be performed by separated workers, each with own queue. Queues count isn't fixed (random clients count, each produce fixed request execution order etc.) I tried...

Currently docs says: Disable RQ sentry plugin If your project use sentry-sdk, the DSN is not compatible with RQ's sentry plugin (based on raven). In that case you have to...

Hello! I have long running task (mailing list). My function fetch all recipients and send simple notify, then set flag and then send status. On test stage with 2 recipients...

`RQ_QUEUES` allows for setting `DEFAULT_TIMEOUT` when defining a queue in `settings.py`. Also, the `@job` decorator allows for setting `DEFAULT_RESULT_TTL` in `RQ` in `settings.py`. It would be nice to allow setting...

We are on `1.3.0` of django-rq, and had an issue with it installing `rq==1.0` which is obviously not compatible. The issue is that the setup.py allows _any_ upgrade of any...

I'm using django-rq on Heroku with the Heroku Postgres DB setup. When my RQ worker jobs finish, I always see this in the logs: ``` LOG: could not receive data...

Add ability to use default localization in tasks without manual activation for each task.

We often use django-rq to enqueue jobs where the job arguments are actual functions. We discovered that viewing job details in django-rq's admin interface actually re-executes these functions as a...