amarlearning opened a new pull request, #48194:
URL: https://github.com/apache/airflow/pull/48194
closes: #48105
Fix over-masking in SecretsMasker by adding word boundaries to pattern
matching.
**Before:**
```json
{
"field_with_password_inside": "my***file",
"normal_value": "v***lue" # if 'a' was marked sensitive
}
```
**After:**
```json
{
"field_with_password_inside": "mypasswordfile",
"normal_value": "value",
"api_key": "***" # only masks when key is sensitive
}
```
--
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]