aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2021-10-06 13:28:30 +0900
committerMichael Paquier <michael@paquier.xyz>2021-10-06 13:28:30 +0900
commitae254356f94af220841f3c59dcd4d820449ca0fc (patch)
treef634a18966156d8d66c40191ac38f5fc3e5cd948
parentcb8a5a588eb7325d17780a7a8871ae3b49adc497 (diff)
downloadpostgresql-ae254356f94af220841f3c59dcd4d820449ca0fc.tar.gz
postgresql-ae254356f94af220841f3c59dcd4d820449ca0fc.zip
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
-rw-r--r--src/bin/pg_verifybackup/t/007_wal.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_verifybackup/t/007_wal.pl b/src/bin/pg_verifybackup/t/007_wal.pl
index 0a4fc3c2125..baabab3c792 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()');