From 018268f9be8ef4fbd3b3fa3a49a7767311c9142f Mon Sep 17 00:00:00 2001 From: Moritz Date: Wed, 23 Apr 2025 18:37:41 +0200 Subject: [PATCH] fix wait_for_postgres --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 54ead75..d931f4c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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