potiuk commented on issue #58440: URL: https://github.com/apache/airflow/issues/58440#issuecomment-3549596778
This is not possible. Airflow will always mask passwords - if you are using "airflow" as a password (which you should not) it will be masked. The description is quite clear about it (it's only about sensitive connection extra keys not passwords). > Hide sensitive Variables or Connection extra json keys from UI and task logs when set to True Since Airflow 3 you can set minimum length of secret `min_length_masked_secret` so upgrading to Airflow 3 is a possiblity. Other than that you can likely follow the path of custom logging and adapt configuration of logger to remove secrets masker that is configured as logging filter (see the custom logging config and alirflow_local_settings.py). -- 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]
