diff options
author | Greg Sabino Mullane | 2011-01-21 04:03:15 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2011-01-21 04:03:15 +0000 |
commit | 96672beffe237eb2d4eec578946482aa6ccc7635 (patch) | |
tree | 12c0ff8112d929f5adff8c8dca346f74eda901fb | |
parent | ceb5016e40a31241fc56be9ffadfe1a31d1e07fb (diff) |
Typo.
-rwxr-xr-x | check_postgres.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check_postgres.pl b/check_postgres.pl index 89a96f850..83fcb7e05 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -2529,7 +2529,7 @@ sub check_autovac_freeze { elsif ($r->{perc} == $maxp) { $maxdb .= sprintf '%s%s', (length $maxdb ? ' | ' : ''), $r->{datname}; } - $maxt = $r->{tnxs} if $r->{txns} > $maxt; + $maxt = $r->{txns} if $r->{txns} > $maxt; next SLURP; } |