From ec2133a447318ac6d78887e91940d69e6d92a435 Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Wed, 6 Oct 2021 13:28:23 +0900 Subject: [PATCH] Fix warning in TAP test of pg_verifybackup Oversight in a3fcbcd. Reported-by: Thomas Munro Discussion: https://postgr.es/m/CA+hUKGKnajZEwe91OTjro9kQLCMGGFHh2vvFn8tgHgbyn4bF9w@mail.gmail.com Backpatch-through: 13 --- src/bin/pg_verifybackup/t/007_wal.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_verifybackup/t/007_wal.pl b/src/bin/pg_verifybackup/t/007_wal.pl index 29b8a070d7..dc85b2a774 100644 --- a/src/bin/pg_verifybackup/t/007_wal.pl +++ b/src/bin/pg_verifybackup/t/007_wal.pl @@ -64,7 +64,7 @@ command_fails_like( # a timeline > 1. Rather than plugging in a new standby, do a # self-promotion of this node. $primary->stop; -$primary->append_conf('standby.signal'); +$primary->append_conf('standby.signal', ''); $primary->start; $primary->promote; $primary->safe_psql('postgres', 'SELECT pg_switch_wal()');