mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 00:02:19 +00:00
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