I\'m using the django-redis and django_rq frameworks to support both redis caching and redis background task processing for my Django application on Heroku. It\'s worked smoothl
The problem is solved by closing the DB connection at the beginning of each job.
For example,
@job some_job(): from django.db import connection connection.close() some_more_code()