I have a web app that I'm trying to push to a EC2 box. This application works in debug on my local system, but I get the following error when it's on the cloud box.
TypeError at /accounts/openid/login/
<openid.yadis.manager.YadisServiceManager object at 0x7f8a75202510> is not JSON serializable
This seems to be the same issue as this post: django_openid_auth TypeError openid.yadis.manager.YadisServiceManager object is not JSON serializable
But I added the line to the setting.py file to use Pickle as the default serializer, but it doesn't seem to work:
SESSION_SERIALIZER = 'django.contrib.sessions.serializers.PickleSerializer'
I am at a loss. I made sure I have matching versions on my dev machine and on the cloud box, but it still doesn't work.
Anyone else have an idea?
Thanks,