diff options
author | ivan <ivan> | 2009-03-22 03:33:41 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-03-22 03:33:41 +0000 |
commit | e7691c81579d609954f0c55967c9c1c887b76da1 (patch) | |
tree | f91e4b34625adf75aed57c31cb3da30b86dae389 | |
parent | 217652bf12f6fa58c092410d82e688f0d15eb2ac (diff) |
10 is too few, throwing false positives
-rw-r--r-- | FS/FS/Cron/check.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Cron/check.pm b/FS/FS/Cron/check.pm index 9a415bd9e..e23d62bb4 100644 --- a/FS/FS/Cron/check.pm +++ b/FS/FS/Cron/check.pm @@ -72,7 +72,7 @@ sub check_apache { } #and now for something entirely different... -my $num_consecutive_bop_failures = 10; +my $num_consecutive_bop_failures = 30; sub check_bop_failures { return 1 if grep { $_->statustext eq 'captured' } |