Skip to content

Commit

Permalink
Remove print introduced in PR #32261 (#34008)
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajkoti authored Sep 1, 2023
1 parent f923bd3 commit 2232361
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion airflow/api_connexion/endpoints/config_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 2232361

Please sign in to comment.