From 1249f9b84433e0ca481a4a7a7caa0292a5eeaa43 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Thu, 8 Jan 2026 21:59:15 -0500 Subject: [PATCH] chore(lint): remove unused nolint directive --- pkg/cron/cron.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cron/cron.go b/pkg/cron/cron.go index c47f8e44515b92ba88335c93133745a59ddae992..fa5fbb2a38a9773a2aa5d108b9764763d313e0ce 100644 --- a/pkg/cron/cron.go +++ b/pkg/cron/cron.go @@ -39,7 +39,7 @@ func NewScheduler(ctx context.Context) *Scheduler { // Shutdonw gracefully shuts down the Scheduler. func (s *Scheduler) Shutdown() { - ctx, cancel := context.WithTimeout(s.Cron.Stop(), 30*time.Second) //nolint:staticcheck + ctx, cancel := context.WithTimeout(s.Cron.Stop(), 30*time.Second) defer func() { cancel() }() <-ctx.Done() }