We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 258b897 commit 0bb7be6Copy full SHA for 0bb7be6
pkg/kapp/clusterapply/applying_changes.go
@@ -60,6 +60,8 @@ func (c *ApplyingChanges) Apply(allChanges []*ctldgraph.Change) ([]WaitingChange
60
// - "...: context canceled (reason: )"
61
applyThrottle := util.NewThrottle(c.opts.Concurrency)
62
applyCh := make(chan applyResult, len(nonAppliedChanges))
63
+
64
+ // Perform noop changes after all other changes are applied
65
allChangesAreNoop := c.allChangesAreNoop(nonAppliedChanges)
66
67
for _, change := range nonAppliedChanges {
0 commit comments