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
django-email-confirmation misses some obvious database indexes
We found this issue when using email-confirmation on really large databases.
2 issues found:
EmailConfirmation.confirmation_key <- you always do a lookup with confirmation_key as key
EmailAddress.email <- when looking for dups etc, you query on this key
django-email-confirmation misses some obvious database indexes
We found this issue when using email-confirmation on really large databases.
2 issues found:
EmailConfirmation.confirmation_key <- you always do a lookup with confirmation_key as key
EmailAddress.email <- when looking for dups etc, you query on this key
patch below:
The text was updated successfully, but these errors were encountered: