diff --git a/airflow-core/src/airflow/configuration.py b/airflow-core/src/airflow/configuration.py index a4bf6293e3437..fd48364cd6f09 100644 --- a/airflow-core/src/airflow/configuration.py +++ b/airflow-core/src/airflow/configuration.py @@ -346,6 +346,7 @@ def sensitive_config_values(self) -> set[tuple[str, str]]: # When reading new option, the old option will be checked to see if it exists. If it does a # DeprecationWarning will be issued and the old option will be used instead deprecated_options: dict[tuple[str, str], tuple[str, str, str]] = { + ("dag_processor", "dag_file_processor_timeout"): ("core", "dag_file_processor_timeout", "3.0"), ("dag_processor", "refresh_interval"): ("scheduler", "dag_dir_list_interval", "3.0"), ("api", "base_url"): ("webserver", "base_url", "3.0"), ("api", "host"): ("webserver", "web_server_host", "3.0"),