ashb commented on code in PR #52651:
URL: https://github.com/apache/airflow/pull/52651#discussion_r2314587461


##########
airflow-core/src/airflow/models/dagbag.py:
##########
@@ -536,7 +536,7 @@ def bag_dag(self, dag: DAG):
         except (AirflowClusterPolicyViolation, AirflowClusterPolicySkipDag):
             raise
         except Exception as e:
-            self.log.exception(e)
+            self.log.exception(str(e))

Review Comment:
   Shouldn't be needed anymore
   ```suggestion
               self.log.exception(e)
   ```
   
   (I mean, it's silly to log the exception string with the exception 
traceback, but lets not fix that here)



-- 
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]

Reply via email to