nflog: use errors.New instead of fmt.Errorf for no custom error msg. (#2045)

Signed-off-by: johncming <johncming@yahoo.com>
This commit is contained in:
johncming 2019-09-25 16:31:01 +08:00 committed by Simon Pasquier
parent 52b4cecd56
commit 311650658a
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ import (
var ErrNotFound = errors.New("not found")
// ErrInvalidState is returned if the state isn't valid.
var ErrInvalidState = fmt.Errorf("invalid state")
var ErrInvalidState = errors.New("invalid state")
// query currently allows filtering by and/or receiver group key.
// It is configured via QueryParameter functions.
@ -193,7 +193,7 @@ func WithMetrics(r prometheus.Registerer) Option {
func WithMaintenance(d time.Duration, stopc chan struct{}, done func()) Option {
return func(l *Log) error {
if d == 0 {
return fmt.Errorf("maintenance interval must not be 0")
return errors.New("maintenance interval must not be 0")
}
l.runInterval = d
l.stopc = stopc