ephraimbuddy commented on issue #57618:
URL: https://github.com/apache/airflow/issues/57618#issuecomment-3730286613

   > 
[Here](https://github.com/user-attachments/files/24533534/Logs-2026-01-09.19_43_13.json)
 are the new logs.
   
   Open a python shell in the scheduler pods and let me know what you get when 
you run the below:
   ```shell
   import inspect
   import airflow.models.dagrun as dagrun
   path = inspect.getsourcefile(dagrun)
   print("dagrun.py", path)
   txt = open(path, "r", encoding="utf-8").read()
   print("Has guards: ", "schedulable_state_clause" in txt and 
"non_null_schedulable_states" in txt)
   ```
   It's just to be sure it was patched well


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