diff options
author | ivan <ivan> | 2009-03-22 03:33:40 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-03-22 03:33:40 +0000 |
commit | 8089deb0915306ba481def7118deb27fe51735ab (patch) | |
tree | 32b4d5e17181d4b6196ed427ec7bdac5414e9a88 | |
parent | 1613980c5c93d0bdf8699d44ff22ecf828abf122 (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' } |