You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/02/20 21:31:14 UTC

[GitHub] [airflow] uranusjr commented on a change in pull request #21540: Fix logging JDBC SQL error when task fails

uranusjr commented on a change in pull request #21540:
URL: https://github.com/apache/airflow/pull/21540#discussion_r810687284



##########
File path: airflow/utils/log/secrets_masker.py
##########
@@ -147,7 +147,10 @@ def _record_attrs_to_ignore(self) -> Iterable[str]:
         return frozenset(record.__dict__).difference({'msg', 'args'})
 
     def _redact_exception_with_context(self, exception):
-        exception.args = (self.redact(v) for v in exception.args)
+        try:
+            exception.args = (self.redact(v) for v in exception.args)
+        except AttributeError:

Review comment:
       Add a comment explaining why this is done?




-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org