From: Joshua Tolley Date: Mon, 9 Mar 2009 19:59:30 +0000 (-0600) Subject: Fix typo (tnxtime != txntime) X-Git-Tag: 2.9.0~146^2 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=d7911b83e4cc93088edbd62aaa295237a9729db8;p=check_postgres.git Fix typo (tnxtime != txntime) --- diff --git a/check_postgres.pl b/check_postgres.pl index 96ad41e6c..5f5848f0c 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -3546,13 +3546,13 @@ sub check_txn_time { add_unknown 'T-EXCLUDE-DB'; } else { - add_ok msg('tnxtime-none'); + add_ok msg('txntime-none'); } next; } $db->{perf} .= msg('maxtime', $max); - my $msg = msg('tnxtime-msg', $max); + my $msg = msg('txntime-msg', $max); if (length $critical and $max >= $critical) { add_critical $msg; }