diff options
author | Noah Misch <noah@leadboat.com> | 2022-04-15 23:15:38 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2022-04-15 23:15:38 -0700 |
commit | 5fbb2d8f105efee1d059a7edb86f45e38616d329 (patch) | |
tree | 33169d6d0f550597b0d4090df6d8fb7104da2f2f /src | |
parent | d3609dd2547b3ed807bc3b6dd27a008d65e86668 (diff) | |
download | postgresql-5fbb2d8f105efee1d059a7edb86f45e38616d329.tar.gz postgresql-5fbb2d8f105efee1d059a7edb86f45e38616d329.zip |
Use standard timeout, in 010_pg_basebackup.pl.
Per buildfarm member mandrill. The test is new in v15, so no back-patch.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_basebackup/t/010_pg_basebackup.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/t/010_pg_basebackup.pl b/src/bin/pg_basebackup/t/010_pg_basebackup.pl index 7309ebddea6..056fcf35976 100644 --- a/src/bin/pg_basebackup/t/010_pg_basebackup.pl +++ b/src/bin/pg_basebackup/t/010_pg_basebackup.pl @@ -838,7 +838,8 @@ SKIP: $node->safe_psql('postgres', q{CREATE TABLE t AS SELECT a FROM generate_series(1,10000) AS a;}); -my $sigchld_bb_timeout = IPC::Run::timer(60); +my $sigchld_bb_timeout = + IPC::Run::timer($PostgreSQL::Test::Utils::timeout_default); my ($sigchld_bb_stdin, $sigchld_bb_stdout, $sigchld_bb_stderr) = ('', '', ''); my $sigchld_bb = IPC::Run::start( [ |