roykoand commented on code in PR #62142:
URL: https://github.com/apache/airflow/pull/62142#discussion_r2823912336
##########
task-sdk/src/airflow/sdk/execution_time/supervisor.py:
##########
@@ -2080,13 +2080,23 @@ def supervise(
exit_code = process.wait()
end = time.monotonic()
- log.info(
- "Task finished",
- task_instance_id=str(ti.id),
- exit_code=exit_code,
- duration=end - start,
- final_state=process.final_state,
- )
+
+ if exit_code == -9:
Review Comment:
this does not seem to be related to this pr. maybe bad rebase?
--
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]