Skip to content

Commit

Permalink
fix previous change that broke things
Browse files Browse the repository at this point in the history
  • Loading branch information
harrysolovay committed Sep 26, 2024
1 parent a8812ea commit 9849af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/wait_for_pg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ PG_HOST="${1:-localhost}"
PG_PORT="${2:-5432}"

# Wait for PostgreSQL to become available
until pg_is_ready -h "$PG_HOST" -p "$PG_PORT"; do
until pg_isready -h "$PG_HOST" -p "$PG_PORT"; do

Check warning on line 12 in scripts/wait_for_pg.sh

View workflow job for this annotation

GitHub Actions / cspell

Unknown word (isready)
echo "Waiting for PostgreSQL to become available at ${PG_HOST}:${PG_PORT}..."
sleep 1
done
Expand Down

0 comments on commit 9849af7

Please sign in to comment.