Skip to content

Commit 4c393d7

Browse files
committed
feat: remove timeout flag bump version for testing
1 parent be24dea commit 4c393d7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ansible/files/admin_api_scripts/pg_upgrade_scripts/initiate.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,10 +470,10 @@ EOF
470470
systemctl disable postgresql
471471

472472
# Use systemctl stop with a longer timeout
473-
if ! systemctl stop -t 120 postgresql; then
473+
if ! systemctl stop postgresql; then
474474
echo "Standard stop failed, trying one more time..."
475475
sleep 5
476-
systemctl stop -t 120 postgresql || true
476+
systemctl stop postgresql || true
477477
fi
478478

479479
# Quick verification

ansible/vars.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ postgres_major:
99

1010
# Full version strings for each major version
1111
postgres_release:
12-
postgresorioledb-17: "17.0.1.079-orioledb-pgupgrade-2"
13-
postgres17: "17.4.1.029-pgupgrade-2"
14-
postgres15: "15.8.1.086-pgupgrade-2"
12+
postgresorioledb-17: "17.0.1.079-orioledb-pgupgrade-3"
13+
postgres17: "17.4.1.029-pgupgrade-3"
14+
postgres15: "15.8.1.086-pgupgrade-3"
1515

1616
# Non Postgres Extensions
1717
pgbouncer_release: "1.19.0"

0 commit comments

Comments
 (0)