Eason09053360 commented on PR #61673:
URL: https://github.com/apache/airflow/pull/61673#issuecomment-3875156903

   Thanks for catching this! I've updated the code to include the compatibility 
fallback:
   
   ```python
   try:
       from airflow.serialization.serialized_objects import 
create_scheduler_operator
   except ImportError:
       create_scheduler_operator = lambda t: t
   ```
   This should handle Airflow 3.0.0 where `create_scheduler_operator` may not 
be available. The fallback lambda returns the task as-is for older versions.


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