You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 14, 2023. It is now read-only.
If a user signs up but something is wrong with the database such that an IntegrityError gets raised, the code will currently suppress the error and show a generic error to the user:
If a user signs up but something is wrong with the database such that an
IntegrityError
gets raised, the code will currently suppress the error and show a generic error to the user:django-councilmatic-notifications/notifications/views.py
Lines 139 to 154 in 0aca66b
This happened recently when the primary key sequence for the
auth_user
table got out of sync, causing anIntegrityError
to get raised byform.save()
.We should make sure that we log this error to Sentry so that we can diagnose the error without having to interrupt the running application.
The text was updated successfully, but these errors were encountered: