dzhigimont commented on code in PR #30372:
URL: https://github.com/apache/airflow/pull/30372#discussion_r1162781385


##########
airflow/models/dagrun.py:
##########
@@ -1274,37 +1280,44 @@ def schedule_tis(self, schedulable_tis: Iterable[TI], 
session: Session = NEW_SES
                 schedulable_ti_ids.append((ti.task_id, ti.map_index))
 
         count = 0
+        max_tis_per_query = airflow_conf.getint("scheduler", 
"max_tis_per_query")

Review Comment:
   I've faced a problem with getting `max_tis_per_query` in the 
`LocalTaskJobRunner`, in that class job might be Job or JobPydantic instance 
and JobPydantic doesn't have max_tis_per_query and the static check failed 
there, what do you suggest to me?



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