aresabalo commented on issue #19816:
URL: https://github.com/apache/airflow/issues/19816#issuecomment-979381659
The redact function already has a hard recursion limit (by default 5) in
secrets_masker.py
There must be another problem in that function.
Setting AIRFLOW__CORE__HIDE_SENSITIVE_VAR_CONN_FIELDS to "False" should
avoid executing this buggy function, but it doesn't work either :-(
----
def _redact(self, item: "RedactableItem", name: Optional[str], depth:
int) -> "RedactableItem":
# Avoid spending too much effort on redacting on deeply nested
# structures. This also avoid infinite recursion if a structure has
# reference to self.
if depth > self.MAX_RECURSION_DEPTH:
return item
--
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]