diff --git a/offspring/offspring.go b/offspring/offspring.go index 67df24b6a..936f597d3 100644 --- a/offspring/offspring.go +++ b/offspring/offspring.go @@ -255,7 +255,8 @@ func (w *Reconciliation) Changed(key string, obj runtime.Object) (runtime.Object existingSet := w.children[parentRef] if objectSet.Parent != nil { - if newObj, err := w.updateParent(parentRef, obj, objectSet.Parent); err != nil { + newObj, err := w.updateParent(parentRef, obj, objectSet.Parent) + if err != nil { return obj, err } obj = newObj