JH-A-Kim commented on code in PR #68106:
URL: https://github.com/apache/airflow/pull/68106#discussion_r3384656510
##########
airflow-core/tests/unit/dag_processing/test_processor.py:
##########
@@ -2086,9 +2086,10 @@ def
test_handle_request_get_connection_masks_password_and_extra(self, proc):
password="super-secret-password",
extra='{"api_key":"super-secret-extra"}',
)
+ mock_masker = MagicMock()
with (
- patch("airflow.dag_processing.processor.mask_secret") as
mock_mask_secret,
+ patch("airflow.sdk._shared.secrets_masker._secrets_masker",
return_value=mock_masker),
Review Comment:
Resolved this in commit 51d7ef5ba3bb8571b8e07e301076aed013160a33
Thanks for the feedback!
--
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]