improve from connection string parser for postgres

This commit is contained in:
Ruben Fiszel
2024-02-16 09:10:42 +01:00
parent 3a1993e978
commit a79ff532fc
@@ -84,7 +84,7 @@
user,
password: password || args?.password,
host,
port: port || args?.port,
port: (port ? Number(port) : undefined) || args?.port,
dbname: dbname || args?.dbname,
sslmode: sslmode || args?.sslmode
},