Skip to content

Commit

Permalink
Update customizing-automation-conditions.mdx
Browse files Browse the repository at this point in the history
Using `~AutomationCondition.any_deps_missing()` instead of `AutomationCondition.missing()`
  • Loading branch information
vuthanhdatt authored Dec 18, 2024
1 parent e3e0b8c commit f0ba572
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import dagster as dg

condition = (
dg.AutomationCondition.eager()
.without(~dg.AutomationCondition.missing())
.without(~dg.AutomationCondition.any_deps_missing())
.with_label("eager_allow_missing")
)
```
Expand Down

0 comments on commit f0ba572

Please sign in to comment.