From 15f07e260263f12fd16b906b76ba385e86f26c38 Mon Sep 17 00:00:00 2001 From: Tiago Queiroz Date: Tue, 9 Apr 2024 08:18:33 +0200 Subject: [PATCH] Fix lint errors --- filebeat/input/v2/input-cursor/clean.go | 1 + 1 file changed, 1 insertion(+) diff --git a/filebeat/input/v2/input-cursor/clean.go b/filebeat/input/v2/input-cursor/clean.go index 23597cac5c05..179110ea6248 100644 --- a/filebeat/input/v2/input-cursor/clean.go +++ b/filebeat/input/v2/input-cursor/clean.go @@ -44,6 +44,7 @@ type cleaner struct { // once the last event has been ACKed. func (c *cleaner) run(canceler unison.Canceler, store *store, interval time.Duration) { started := time.Now() + //nolint: errcheck // gcStore does not return an error timed.Periodic(canceler, interval, func() error { gcStore(c.log, started, store) return nil