- multiple modules thanks to @likeon
# A singe module:
RQ_JOBS_MODULE = 'myapp.tasks'
# or with multiple modules:
RQ_JOBS_MODULE = (
'myapp.tasks',
'anotherapp.tasks',
)
Update Instructions
- run
python manage.py migrate
after the update to update the database. - run
python manage.py rqjobs
after the migration, to convert your existing jobs to the new format.