From 1fb056a8fb30e81dbc798f9116efac583c0767d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=C3=A1n=20Healy?= Date: Sun, 26 Apr 2026 17:54:40 +0100 Subject: [PATCH] Fix postgres URL issue. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index cccc994..ea6219d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -502,7 +502,7 @@ fn fetch_database_url_from_sys_map() -> Result { ); Ok(format!( - "postgres://{}:{}@{}:{}/{}", + "postgresql://{}:{}@{}:{}/{}", username, password, host, port, database )) }