remove format

no-log-dburl
Felix Ableitner 2024-02-16 14:36:25 +01:00
parent 3f4dbc1b69
commit 1e69d62a6a
1 changed files with 1 additions and 2 deletions

View File

@ -369,8 +369,7 @@ pub const MIGRATIONS: EmbeddedMigrations = embed_migrations!();
fn run_migrations(db_url: &str) -> Result<(), LemmyError> {
// Needs to be a sync connection
let mut conn =
PgConnection::establish(db_url).with_context(|| format!("Error connecting to database"))?;
let mut conn = PgConnection::establish(db_url).with_context(|| "Error connecting to database")?;
info!("Running Database migrations (This may take a long time)...");
conn