diff --git a/controller/controller.go b/controller/controller.go index 43abd79..ab70a30 100644 --- a/controller/controller.go +++ b/controller/controller.go @@ -331,9 +331,10 @@ func (c *Controller) handleCacheEvent(snapshot watchable.Snapshot[string, Store] events = append(events, deleteEvents...) if len(events) > 0 { // this condition is actually redundant; if the snapshot has updates, there must be events - c.logger.V(1).Info("state of the world has not changed") c.propagate(events) - } + } else { + c.logger.V(1).Info("state of the world has not changed") + } return objs }