* status: new => closed
* has_patch: 1 => 0
* resolution: => wontfix
Comment:
Thanks for this ticket, however it looks quite niche. In most of cases
it's preferable to return all validation errors to users, without
unnecessary round-trip. You can always pass the `password_validators`
argument in your own code to fail-fast on non-expensive validators, e.g.
{{{
validate_password(password, user, password_validators=non-db-validators)
validate_password(password, user, password_validators=expensive-db-
validators)
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/33696#comment:1>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.