improve from connection string parser for postgres
This commit is contained in:
@@ -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
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user