Skip to content

Commit

Permalink
stacks: don't always early abort on the first plan
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMSchmidt committed Apr 29, 2024
1 parent c00ce75 commit 9b16d01
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/stacks/stackruntime/internal/stackeval/component.go
Expand Up @@ -269,7 +269,9 @@ func (c *Component) PlanIsComplete(ctx context.Context) bool {
return false
}

return plan.Complete
if !plan.Complete {
return false
}
}
// If we get here without returning false then we can say that
// all of the instance plans are complete.
Expand Down

0 comments on commit 9b16d01

Please sign in to comment.