ColtenOuO opened a new pull request, #71623:
URL: https://github.com/apache/airflow/pull/71623

   ### Sumarry
   
   `AirflowConfigParser.write()` documents its masking flag as
   `:param hide_sensitive_values: Include sensitive values in the output`.
   
   Both halves are wrong. The parameter is named `hide_sensitive`, and the
   implementation does the opposite of what the description says:
   
   ```python
   if hide_sensitive and is_sensitive:
       value = "< hidden >"
   ```
   
   This PR fixed the both problems of documents (The wrong name and wrong 
implementation description)
   
   Just fixed documents, no any behavior be changed.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to