We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01de752 commit 3291e30Copy full SHA for 3291e30
1 file changed
.github/workflows/main.yml
@@ -42,7 +42,12 @@ jobs:
42
run: |
43
sudo pg_conftool $PGVERSION main set shared_preload_libraries pgtt
44
sudo service postgresql restart
45
- pg_isready
+ # Poll until pg_isready returns successfully
46
+ until pg_isready -h localhost -p 5432 -U postgres; do
47
+ echo "Waiting for PostgreSQL to restart..."
48
+ sleep 1
49
+ done
50
+ echo "PostgreSQL is ready!"
51
make installcheck
52
53
- name: show regression diffs
0 commit comments