From 864c37f17c3492ea1dbf7d3e610eb4586360bd61 Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Thu, 17 Sep 2020 20:45:13 -0700 Subject: [PATCH] Use 2k lines as the per loop limit --- config/config_throttles.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config_throttles.go b/config/config_throttles.go index d63bb50..656f7c1 100644 --- a/config/config_throttles.go +++ b/config/config_throttles.go @@ -6,7 +6,7 @@ type ConsoleThrottles struct { // The total number of lines that can be output in a given LineResetInterval period before // a warning is triggered and counted against the server. - Lines uint64 `json:"lines" yaml:"lines" default:"1000"` + Lines uint64 `json:"lines" yaml:"lines" default:"2000"` // The total number of throttle activations that can accumulate before a server is considered // to be breaching and will be stopped. This value is decremented by one every DecayInterval.