From c19eaac31892452f7b6439dfd3a91caaa32d7ba8 Mon Sep 17 00:00:00 2001 From: Brian Downs Date: Tue, 3 Dec 2024 15:18:03 -0700 Subject: [PATCH] remediate PR Comments Signed-off-by: Brian Downs --- k3k-kubelet/controller/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k3k-kubelet/controller/handler.go b/k3k-kubelet/controller/handler.go index d1673be..b6e2e03 100644 --- a/k3k-kubelet/controller/handler.go +++ b/k3k-kubelet/controller/handler.go @@ -110,7 +110,7 @@ func (c *ControllerHandler) RemoveResource(ctx context.Context, obj client.Objec ctrl, ok := c.controllers[obj.GetObjectKind().GroupVersionKind()] c.RUnlock() if !ok { - return errors.New("no controller found for gvk" + obj.GetObjectKind().GroupVersionKind().String()) + return errors.New("no controller found for gvk " + obj.GetObjectKind().GroupVersionKind().String()) } return ctrl.RemoveResource(ctx, obj.GetNamespace(), obj.GetName())