From 2d6a359e83860a07f9fd05c11f2780d710e1d82d 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