mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-22 06:36:14 +00:00
* Dont log db url on connection error (fixes #4453) * remove format
This commit is contained in:
parent
86b44c2a4d
commit
ffcf415cac
|
@ -369,8 +369,7 @@ pub const MIGRATIONS: EmbeddedMigrations = embed_migrations!();
|
||||||
|
|
||||||
fn run_migrations(db_url: &str) -> Result<(), LemmyError> {
|
fn run_migrations(db_url: &str) -> Result<(), LemmyError> {
|
||||||
// Needs to be a sync connection
|
// Needs to be a sync connection
|
||||||
let mut conn =
|
let mut conn = PgConnection::establish(db_url).with_context(|| "Error connecting to database")?;
|
||||||
PgConnection::establish(db_url).with_context(|| format!("Error connecting to {db_url}"))?;
|
|
||||||
|
|
||||||
info!("Running Database migrations (This may take a long time)...");
|
info!("Running Database migrations (This may take a long time)...");
|
||||||
conn
|
conn
|
||||||
|
|
Loading…
Reference in a new issue