2👍
If you have an app with a custom session model, you should include this in your INSTALLED_APPS
instead of django.contrib.sessions
.
Having
SESSION_ENGINE='app.sessions'
looks wrong to me. SESSION_ENGINE
should be the path to your AbstractBaseSession
subclass.
Source:stackexchange.com