sunank200 commented on code in PR #42404: URL: https://github.com/apache/airflow/pull/42404#discussion_r1848530608
########## airflow/ti_deps/deps/exec_date_after_start_date_dep.py: ########## @@ -24,23 +24,23 @@ class ExecDateAfterStartDateDep(BaseTIDep): Review Comment: part of other PR ########## providers/src/airflow/providers/cncf/kubernetes/executors/kubernetes_executor.py: ########## @@ -38,9 +38,14 @@ from kubernetes.dynamic import DynamicClient from sqlalchemy import or_, select, update +try: + from airflow.cli.cli_config import ARG_LOGICAL_DATE +except ImportError: # 2.x compatibility. + from airflow.cli.cli_config import ( # type: ignore[attr-defined, no-redef] + ARG_EXECUTION_DATE as ARG_LOGICAL_DATE, + ) Review Comment: Part of other PR -- 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]
