We broke the allauth plugin by removing the socialapps table on stage. This resulted in internal server error, but nothing was showing up in logs.
The only way for me to find the issue was to run this and get a traceback.
python manage.py shell -c "from django.test import Client; c=Client(HTTP_HOST='pontoon.allizom.org'); r=c.get('/', follow=True); print('final status:', r.status_code); print('redirect chain:', r.redirect_chain); print(r.content[:1000])"
We broke the
allauthplugin by removing the socialapps table on stage. This resulted in internal server error, but nothing was showing up in logs.The only way for me to find the issue was to run this and get a traceback.