dstandish commented on code in PR #31658:
URL: https://github.com/apache/airflow/pull/31658#discussion_r1213667659
##########
airflow/models/dagrun.py:
##########
@@ -1248,7 +1259,7 @@ def get_run(session: Session, dag_id: str,
execution_date: datetime) -> DagRun |
session.query(DagRun)
.filter(
DagRun.dag_id == dag_id,
- DagRun.external_trigger == False, # noqa
+ DagRun.external_trigger is False,
Review Comment:
this was not intentional... weird... i'll revert this line
--
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]