Comment 1 for bug 1735250

Revision history for this message
Morgan Fainberg (mdrnstm) wrote : Re: Password column limit (128 char) in the Password table exceeded when using passwords exceeding 2000 characters

This is an issue with the SQLAlchemy hybrid_property.expression use in the user ref, where .expression is returning Password.password.

This appears to be an incorrect use of hybrid_property.expression.

The net result is that in some cases we store the un-hashed password (in memory only) on the Password.password which is 128 character max. The unhashed password is overwritten before persisting to the DB by the logic in the .settr.