Skip to content

Commit e155564

Browse files
committed
Make all Perl warnings fatal in 043_wal_replay_wait.pl
This file was committed after c538592, but accidentally missed changing all warnings into fatal errors. Reported-by: Anton Voloshin Discussion: https://postgr.es/m/aa8a55d5-554a-4027-a491-1b0ca7c85f7a%40postgrespro.ru
1 parent d2b4b4c commit e155564

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/recovery/t/043_wal_replay_wait.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Checks waiting for the lsn replay on standby using
22
# pg_wal_replay_wait() procedure.
33
use strict;
4-
use warnings;
4+
use warnings FATAL => 'all';
55

66
use PostgreSQL::Test::Cluster;
77
use PostgreSQL::Test::Utils;

0 commit comments

Comments
 (0)