jens-scheffler-bosch commented on code in PR #31301:
URL: https://github.com/apache/airflow/pull/31301#discussion_r1225932656
##########
airflow/models/dag.py:
##########
@@ -685,8 +685,8 @@ def validate(self):
f"inconsistent schedule: timetable {self.timetable.summary!r} "
f"does not match schedule_interval {self.schedule_interval!r}",
)
- self.params.validate()
self.timetable.validate()
+ self.validate_schedule_and_params()
Review Comment:
Mhm. I tried to understand this comment on the docstring. But the logic of
validation before bagging is not changing with this PR. Or do I mis-understand?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]