Fix postgres URL issue.

This commit is contained in:
2026-04-26 17:54:40 +01:00
parent a8349e6813
commit 1fb056a8fb

View File

@@ -502,7 +502,7 @@ fn fetch_database_url_from_sys_map() -> Result<String, AnyError> {
);
Ok(format!(
"postgres://{}:{}@{}:{}/{}",
"postgresql://{}:{}@{}:{}/{}",
username, password, host, port, database
))
}