From 4fa1dc87fa62bcfc3195c41dfdf190514546fb1e Mon Sep 17 00:00:00 2001 From: Dennis Haney Date: Fri, 18 Oct 2024 09:20:29 +0200 Subject: [PATCH] fix: missing namespace --- plan/plan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plan/plan.go b/plan/plan.go index 204d616d6..c63ff7c15 100644 --- a/plan/plan.go +++ b/plan/plan.go @@ -242,7 +242,7 @@ func (p *Plan) Calculate() *Plan { changes.Create = append(changes.Create, creates...) } else { for _, current := range row.current { - log.Debugf(`Skipping endpoint %v because owner id does not match for one or more items to create, found: "%s", required: "%s"`, current, current.Labels[OwnerLabelKey], p.OwnerID) + log.Debugf(`Skipping endpoint %v because owner id does not match for one or more items to create, found: "%s", required: "%s"`, current, current.Labels[endpoint.OwnerLabelKey], p.OwnerID) } } }