Error: Exception: retry Which is not a valid case to show traceback to the end user, Instead of a traceback, it's better to raise a validation error. After applying this commit, the message should be shown as ValidationError sentry-5512362745 ...
especially if the form just raised a validation error and a message was returned to the user telling them where the character is that is causing the problems. Its not to hard to take care of bad character data like this but the fieldname_clean() doesn't get a chance to run because the...
query.filter_by(email=email).first(): raise ... If input is not a email, validate_email will still be executed, which make no sense. So I think Email should raise a StopValidation error.Contributor whb07 commented Jun 12, 2018 Im not really clear as to what you're saying here. ...