in operatortrace-go/pkg/predicates/ignore_trace_annotation_update.go [53:60]
func HasSignificantUpdate(oldObj, newObj runtime.Object) bool {
updateEvent := event.UpdateEvent{
ObjectOld: oldObj.(client.Object),
ObjectNew: newObj.(client.Object),
}
predicate := IgnoreTraceAnnotationUpdatePredicate{}
return predicate.Update(updateEvent)
}