Use 2k lines as the per loop limit

This commit is contained in:
Dane Everitt 2020-09-17 20:45:13 -07:00
parent 6ba49df485
commit 864c37f17c
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -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.