jscheffl commented on PR #46257: URL: https://github.com/apache/airflow/pull/46257#issuecomment-2711735941
Yeah the challenge is that the Edge Prover package is also tested against Airflow 2.10 - and obviously the new config parameter is missing there. So in https://github.com/apache/airflow/pull/46257/files#diff-a985248c583a066f2433c82948e4b473b415d22a9469dc457932f768c10992dbR198 as well as alongside tests you need to adjust the logic to fetch the config key based on the airflow version. Import `from airflow.providers.edge.version_compat import AIRFLOW_V_3_0_PLUS` and then you can `if AIRFLOW_V_3_0_PLUS: ... else: ...` -- 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]
