Skip to content

Commit 8961355

Browse files
committed
Raise a timeout to 180s, in test 003_recovery_targets.pl.
Buildfarm member chipmunk has failed twice due to taking >30s, and twenty-four runs of other members have used >5s. The test is new in v13, so no back-patch.
1 parent 7154aa1 commit 8961355

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/recovery/t/003_recovery_targets.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ sub test_recovery_standby
158158
run_log(['pg_ctl', '-D', $node_standby->data_dir,
159159
'-l', $node_standby->logfile, 'start']);
160160

161-
# wait up to 10 seconds for postgres to terminate
162-
foreach my $i (0..100)
161+
# wait up to 180s for postgres to terminate
162+
foreach my $i (0..1800)
163163
{
164164
last if ! -f $node_standby->data_dir . '/postmaster.pid';
165165
usleep(100_000);

0 commit comments

Comments
 (0)