From a24aeedde6ab24fac4d368eb18d22b3ac89a1a18 Mon Sep 17 00:00:00 2001 From: Jason Deal Date: Thu, 25 Sep 2025 18:42:57 -0700 Subject: [PATCH] chore: drop consistency error to info log --- pkg/controllers/nodeclaim/consistency/controller.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/controllers/nodeclaim/consistency/controller.go b/pkg/controllers/nodeclaim/consistency/controller.go index ca0db5db32..7b10b80b84 100644 --- a/pkg/controllers/nodeclaim/consistency/controller.go +++ b/pkg/controllers/nodeclaim/consistency/controller.go @@ -18,7 +18,6 @@ package consistency import ( "context" - stderrors "errors" "fmt" "time" @@ -133,7 +132,7 @@ func (c *Controller) checkConsistency(ctx context.Context, nodeClaim *v1.NodeCla return fmt.Errorf("checking node with %T, %w", check, err) } for _, issue := range issues { - log.FromContext(ctx).Error(stderrors.New(string(issue)), "consistency error") + log.FromContext(ctx).Info(fmt.Sprintf("failed consistency check, %s", string(issue))) c.recorder.Publish(FailedConsistencyCheckEvent(nodeClaim, string(issue))) } hasIssues = hasIssues || (len(issues) > 0)