Update plan/plan.go

Co-authored-by: Raffaele Di Fazio <raffo@github.com>
This commit is contained in:
Dennis Haney 2024-10-30 18:37:42 +07:00 committed by GitHub
parent 4fa1dc87fa
commit 5888e85493
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -241,9 +241,11 @@ func (p *Plan) Calculate() *Plan {
if ownersMatch {
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[endpoint.OwnerLabelKey], p.OwnerID)
}
if log.GetLevel() == log.DebugLevel {
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[endpoint.OwnerLabelKey], p.OwnerID)
}
}
}
}
}