fix: missing namespace

This commit is contained in:
Dennis Haney 2024-10-18 09:20:29 +02:00 committed by GitHub
parent 45e9ed9a3f
commit 4fa1dc87fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)
}
}
}