Don't replace postgres dbname

This commit is contained in:
Diego Imbert
2026-03-27 10:42:21 +01:00
parent 28795acfb4
commit fd60dd11f4
@@ -908,8 +908,7 @@ async fn drop_forked_datatable_databases(
continue;
}
};
let admin_pg = PgDatabase { dbname: "postgres".to_string(), ..pg };
match admin_pg.connect().await {
match pg.connect().await {
Ok((client, connection)) => {
let join_handle = tokio::spawn(async move { connection.await });
match client