dancerfly / django-brambling

Event website manager, specifically designed for dance weekends or other events with multiple simultaneous tracks of classes.
BSD 3-Clause "New" or "Revised" License
11 stars 3 forks source link

Race condition on signup causes 500 error #964

Open melinath opened 3 years ago

melinath commented 3 years ago

It looks like users can trigger a race condition on signup - probably by double-clicking the button - which causes an IntegrityError due to a duplicate email address. We already check for duplicate emails during form validation; however, we need to also handle the potential IntegrityError during form save.