bugraoz93 commented on code in PR #54382: URL: https://github.com/apache/airflow/pull/54382#discussion_r2272630879
########## airflow-core/src/airflow/api_fastapi/common/parameters.py: ########## @@ -540,6 +540,22 @@ def is_active(self) -> bool: self.value.lower_bound is not None or self.value.upper_bound is not None ) +class _IsDagScheduledFilter(BaseParam[bool]): + """Filter on timetable_description.""" + + def to_orm(self, select: Select) -> Select: + if not self.value is None and self.skip_none: + if not self.value: Review Comment: Thanks for the details! Indeed, I overlooked the condition, these are different conditions -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org