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

ephraimanierobi pushed a commit to branch v2-7-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 7cd0748c6017abf8f0da241f0fa86488f32d5e95
Author: Pankaj Koti <[email protected]>
AuthorDate: Fri Sep 1 21:39:46 2023 +0530

    Remove print introduced in PR #32261 (#34008)
    
    (cherry picked from commit 2232361c7cfd15f8d5e4384c06281cbd10071f42)
---
 airflow/api_connexion/endpoints/config_endpoint.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/airflow/api_connexion/endpoints/config_endpoint.py 
b/airflow/api_connexion/endpoints/config_endpoint.py
index 1fe2eff777..38f6f32c22 100644
--- a/airflow/api_connexion/endpoints/config_endpoint.py
+++ b/airflow/api_connexion/endpoints/config_endpoint.py
@@ -123,7 +123,6 @@ def get_value(section: str, option: str) -> Response:
                 "Config not found.", detail=f"The option [{section}/{option}] 
is not found in config."
             )
 
-        print(conf.sensitive_config_values)
         if (section, option) in conf.sensitive_config_values:
             value = "< hidden >"
         else:

Reply via email to