From 1d10f85c28951089164bc66ab82db90d7f88efa2 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Fri, 1 Sep 2023 22:13:34 -0400 Subject: [PATCH] engine: graph: Move misplaced comment --- engine/graph/actions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/graph/actions.go b/engine/graph/actions.go index d15f003e..552f523e 100644 --- a/engine/graph/actions.go +++ b/engine/graph/actions.go @@ -151,8 +151,8 @@ func (obj *Engine) Process(vertex pgraph.Vertex) error { } else if noop && (refresh && isRefreshableRes) { // had a refresh to do w/ noop! checkOK, err = false, nil // therefore the state is wrong - // run the CheckApply! } else { + // run the CheckApply! obj.Logf("%s: CheckApply(%t)", res, !noop) // if this fails, don't UpdateTimestamp() checkOK, err = res.CheckApply(!noop)