fix wait_for_postgres

This commit is contained in:
Moritz 2025-04-23 18:37:41 +02:00
parent 5b351ec4d8
commit 2d6a359e83
Signed by: moritz
GPG key ID: 1020A035E5DD0824

View file

@ -36,7 +36,7 @@ steps:
# Wait for postgres to become available
- |
for i in {1..20}; do
if pg_isready -h postgres -u postgres; then
if pg_isready -h postgres -U postgres; then
exit 0
else
true