This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 2232361c7c Remove print introduced in PR #32261 (#34008)
2232361c7c is described below
commit 2232361c7cfd15f8d5e4384c06281cbd10071f42
Author: Pankaj Koti <[email protected]>
AuthorDate: Fri Sep 1 21:39:46 2023 +0530
Remove print introduced in PR #32261 (#34008)
---
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: