diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-10-06 13:28:23 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-10-06 13:28:23 +0900 |
commit | ec2133a447318ac6d78887e91940d69e6d92a435 (patch) | |
tree | 145e11ec1f538d8aec5fd8266970f5af9ca55755 | |
parent | 0266e98c6b865246c3031bbf55cb15f330134e30 (diff) | |
download | postgresql-ec2133a447318ac6d78887e91940d69e6d92a435.tar.gz postgresql-ec2133a447318ac6d78887e91940d69e6d92a435.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.pl | 2 |
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 29b8a070d74..dc85b2a7745 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()'); |