diff options
-rwxr-xr-x | check_postgres.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/check_postgres.pl b/check_postgres.pl index 559c9607d..7e1105e06 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -5665,11 +5665,11 @@ sub check_checkpoint { ndie msg('checkpoint-badver2'); } - ## See pgsql/src/bin/pg_controldata/po/* my $regex = msg('checkpoint-po'); if ($res !~ /$regex\s*(.+)/) { ## no critic (ProhibitUnusedCapture) ## Just in case, check the English one as well - if ($res !~ /Time of latest checkpoint:\s*(.+)/) { + $regex = msg('checkpoint-po', 'en'); + if ($res !~ /$regex\s*(.+)/) { ndie msg('checkpoint-noregex', $dir); } } |