From f71fdabca9b01f6f289d6f71d1b35db1cf77a20f Mon Sep 17 00:00:00 2001 From: Matheus Pimenta Date: Fri, 16 Jan 2026 06:01:25 +0000 Subject: [PATCH] ssa: modernize go for variables (forvar) Signed-off-by: Matheus Pimenta --- ssa/manager_apply.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/ssa/manager_apply.go b/ssa/manager_apply.go index 6d190c8e..81c5e4d6 100644 --- a/ssa/manager_apply.go +++ b/ssa/manager_apply.go @@ -154,8 +154,6 @@ func (m *ResourceManager) ApplyAll(ctx context.Context, objects []*unstructured. g, ctx := errgroup.WithContext(ctx) g.SetLimit(m.concurrency) for i, object := range objects { - i, object := i, object - g.Go(func() error { utils.RemoveCABundleFromCRD(object)