mirror of https://github.com/pulumi/pulumi.git
34b0409d07
When running `pulumi up --continue-on-error`, we can't bring up new resources that have dependencies that have failed, or have been skipped. Since the resource would have a failed dependency, that dependency would not be in the snapshot, resulting in a snapshot integrity failure. Also it simply does not make sense to `up` a resource that has a failed dependency. We took care of that for the regular dependency relationship, however at the time we missed doing the same for other types of dependencies, namely parent-child relationships, deleted with relationships and property dependencies. This can result in snapshot integrity failures for example when a parent fails to be created, but we still do the resource creation of the child, such as what happened in https://github.com/pulumi/pulumi/issues/16638. Fix this by skipping the step when a resource with any type of dependency relationship fails or is skipped beforehand. Fixes https://github.com/pulumi/pulumi/issues/16638 |
||
---|---|---|
.. | ||
lifecycletest | ||
combinedManager.go | ||
deployment.go | ||
deployment_test.go | ||
destroy.go | ||
detailedDiff.go | ||
detailedDiff_test.go | ||
doc.go | ||
engine.go | ||
errors.go | ||
events.go | ||
events_test.go | ||
eventsink.go | ||
import.go | ||
journal.go | ||
plugin_host.go | ||
plugins.go | ||
plugins_test.go | ||
project.go | ||
query.go | ||
refresh.go | ||
snapshot.go | ||
update.go | ||
update_test.go |