Redis – Django and Huey task issue, record in DB doesn't exist when the task is ran
I am testing Huey with Django and found one issue, tasks can't find the record in DB. Postgres 14 Redis 7.0.5 Django 4 use with docker Here is the code: # settings.py USE_HUEY = env.bool("USE_HUEY", False) HUEY = { "huey_class":…