This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-1-test by this push:
     new 7c12794c2df [v3-1-test] Add deprecated_options entry for 
dag_file_processor_timeout (#59181) (#60162)
7c12794c2df is described below

commit 7c12794c2dfddb69ad1d77e6c9ff3e905a57a48d
Author: Jarek Potiuk <[email protected]>
AuthorDate: Tue Jan 6 13:23:02 2026 +0100

    [v3-1-test] Add deprecated_options entry for dag_file_processor_timeout 
(#59181) (#60162)
    
    (cherry picked from commit 56b0e5af218335d43133373135364b0d309f12b2)
    
    Co-authored-by: Vinod Bottu <[email protected]>
---
 airflow-core/src/airflow/configuration.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/airflow-core/src/airflow/configuration.py 
b/airflow-core/src/airflow/configuration.py
index a4bf6293e34..fd48364cd6f 100644
--- a/airflow-core/src/airflow/configuration.py
+++ b/airflow-core/src/airflow/configuration.py
@@ -346,6 +346,7 @@ class AirflowConfigParser(ConfigParser):
     # 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"),

Reply via email to