At the moment some SQLAlchemy errors are displaying sensitive database credentials in the logs. For example, on a connection error the logs will show:
sqlalchemy.exc.OperationalError: (psycopg2.OperationalError) connection to server at [db url] ... failed
This error will display the database url, database user, and database. These details should be redacted to prevent leaking sensitive information in the logs.
At the moment some SQLAlchemy errors are displaying sensitive database credentials in the logs. For example, on a connection error the logs will show:
sqlalchemy.exc.OperationalError: (psycopg2.OperationalError) connection to server at [db url] ... failedThis error will display the database url, database user, and database. These details should be redacted to prevent leaking sensitive information in the logs.