Skip to content

Commit

Permalink
Fix flows timeout setting error message (#11050)
Browse files Browse the repository at this point in the history
Closes: #2821
  • Loading branch information
Steffen Siering authored Mar 6, 2019
1 parent c238ea2 commit 71fb58b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packetbeat/flows/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ type flowsProcessor struct {
}

var (
ErrInvalidTimeout = errors.New("timeout must not <= 1s")
ErrInvalidTimeout = errors.New("timeout must be >= 1s")
ErrInvalidPeriod = errors.New("report period must be -1 or >= 1s")
)

Expand Down

0 comments on commit 71fb58b

Please sign in to comment.