lifecycle: fix custom port not being set for postgres healthcheck

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-06-09 10:59:48 +02:00
parent 2210497569
commit 20493252e2
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ while True:
user=CONFIG.y("postgresql.user"),
password=CONFIG.y("postgresql.password"),
host=CONFIG.y("postgresql.host"),
port=int(CONFIG.y("postgresql.port")),
)
conn.cursor()
break