uranusjr commented on code in PR #38892:
URL: https://github.com/apache/airflow/pull/38892#discussion_r1562114016


##########
airflow/models/taskinstance.py:
##########
@@ -1213,10 +1213,11 @@ def _run_finished_callback(
     if callbacks:
         callbacks = callbacks if isinstance(callbacks, list) else [callbacks]
         for callback in callbacks:
+            callback_name = qualname(callback).split(".")[-1]
             try:
+                log.info("Executing %s callback", callback_name)

Review Comment:
   This should be put outside of the try block.



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