Merge pull request #285 from TelekomLabs/force_pickle_serializer

force pickle session serializer (workaround for django 1.6+)
This commit is contained in:
Sandy Walsh 2014-02-06 10:02:31 -04:00
commit f342567474

View File

@ -167,3 +167,7 @@ LOGGING = {
},
}
}
# Force use of the pickle serializer as a workaound for django-1.6. See:
# https://docs.djangoproject.com/en/dev/releases/1.6/#default-session-serialization-switched-to-json
SESSION_SERIALIZER='django.contrib.sessions.serializers.PickleSerializer'