uranusjr commented on code in PR #58025:
URL: https://github.com/apache/airflow/pull/58025#discussion_r2517326594


##########
airflow-core/src/airflow/models/dagrun.py:
##########
@@ -732,11 +733,11 @@ def find(
             qry = qry.where(cls.dag_id.in_(dag_ids))
 
         if is_container(run_id):
-            qry = qry.where(cls.run_id.in_(run_id))
+            qry = qry.where(cls.run_id.in_(cast("Iterable[str]", run_id)))

Review Comment:
   I’ve sumitted #58224 to improve `is_container` a bit so this cast (and the 
one below for logical_date) will not be needed.



-- 
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]

Reply via email to