lifecycle: fix custom port not being set for postgres healthcheck
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
2210497569
commit
20493252e2
|
@ -32,6 +32,7 @@ while True:
|
||||||
user=CONFIG.y("postgresql.user"),
|
user=CONFIG.y("postgresql.user"),
|
||||||
password=CONFIG.y("postgresql.password"),
|
password=CONFIG.y("postgresql.password"),
|
||||||
host=CONFIG.y("postgresql.host"),
|
host=CONFIG.y("postgresql.host"),
|
||||||
|
port=int(CONFIG.y("postgresql.port")),
|
||||||
)
|
)
|
||||||
conn.cursor()
|
conn.cursor()
|
||||||
break
|
break
|
||||||
|
|
Reference in New Issue