From f11271bdcde045447d8a2695da622920da0fe230 Mon Sep 17 00:00:00 2001 From: Safwan Date: Mon, 15 Jun 2026 21:09:50 +0500 Subject: [PATCH] fixed lint --- internal/pkg/controller/filter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pkg/controller/filter.go b/internal/pkg/controller/filter.go index e1ba2f51..7503bc40 100644 --- a/internal/pkg/controller/filter.go +++ b/internal/pkg/controller/filter.go @@ -41,7 +41,7 @@ func createEventPredicate(cfg *config.Config, startTime time.Time) predicate.Pre // an older creation timestamp and must not trigger reloads on // startup, but a genuine create that arrives afterwards must be // honored even if it is the very first event this controller sees. - return e.Object.GetCreationTimestamp().Time.After(startTime) + return e.Object.GetCreationTimestamp().After(startTime) }, UpdateFunc: func(e event.UpdateEvent) bool { return true