File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
files/admin_api_scripts/pg_upgrade_scripts Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 482482 # Additional check to ensure postgres is really stopped
483483 if [ -f " ${PGDATAOLD} /postmaster.pid" ]; then
484484 echo " PostgreSQL still running, forcing stop..."
485- kill -9 $( head -n 1 " ${PGDATAOLD} /postmaster.pid" ) || true
485+ pid=$( head -n 1 " ${PGDATAOLD} /postmaster.pid" )
486+ kill -9 " $pid " || true
486487 rm -f " ${PGDATAOLD} /postmaster.pid"
487488 fi
488489 else
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ postgres_major:
99
1010# Full version strings for each major version
1111postgres_release :
12- postgresorioledb-17 : " 17.0.1.079-orioledb-upgrade-13 "
13- postgres17 : " 17.4.1.029-upgrade-13 "
14- postgres15 : " 15.8.1.086-upgrade-13 "
12+ postgresorioledb-17 : " 17.0.1.079-orioledb-upgrade-14 "
13+ postgres17 : " 17.4.1.029-upgrade-14 "
14+ postgres15 : " 15.8.1.086-upgrade-14 "
1515
1616# Non Postgres Extensions
1717pgbouncer_release : " 1.19.0"
You can’t perform that action at this time.
0 commit comments