From 44e7e0e9702717629b3d84939c5cdac222179f29 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Fri, 23 Dec 2016 23:32:52 -0500 Subject: [PATCH] resources: virt: Add missing converger call This was previously left out accidentally I suppose. --- resources/virt.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/virt.go b/resources/virt.go index dc8b923c..7a3d6237 100644 --- a/resources/virt.go +++ b/resources/virt.go @@ -236,6 +236,9 @@ func (obj *VirtRes) Watch(processChan chan event.Event) error { obj.StateOK(false) // dirty send = true } + if send { + cuid.SetConverged(false) + } case err := <-errorChan: cuid.SetConverged(false)