Compare commits

...

1 Commits

Author SHA1 Message Date
Mirna Wong
f3da8de0d7 update depends_on default
per [internal slack thread](https://dbt-labs.slack.com/archives/C05FWBP9X1U/p1738605491997089?thread_ts=1738604102.780369&cid=C05FWBP9X1U) with @ChenyuLInx and @gshank , the default for the `depends_on` value is `all` , not `any`. 

@gshank raised that this code has the default to 'any`, which needs to be corrected.
2025-02-05 10:14:21 +00:00

View File

@@ -42,7 +42,7 @@ class ModelFreshnessDependsOnOptions(enum.Enum):
@dataclass
class ModelBuildAfter(ExtensibleDbtClassMixin):
depends_on: ModelFreshnessDependsOnOptions = ModelFreshnessDependsOnOptions.any
depends_on: ModelFreshnessDependsOnOptions = ModelFreshnessDependsOnOptions.all
count: int = 0
period: TimePeriod = TimePeriod.hour