It may happen that django is not noticing your modification to session. It happened to me just now while I was appending to a list there.
Either put SESSION_SAVE_EVERY_REQUEST=True
in settings.py
or set request.session.modified = True
after modifying something in session that you suppose django may not notice.
django recommends former way.