amoghrajesh commented on code in PR #58147:
URL: https://github.com/apache/airflow/pull/58147#discussion_r2519440659
##########
task-sdk/src/airflow/sdk/execution_time/supervisor.py:
##########
@@ -1495,6 +1496,44 @@ def request(self, *args, **kwargs):
# Bypass the tenacity retries!
return super().request.__wrapped__(self, *args, **kwargs) # type:
ignore[attr-defined]
+ def _check_subprocess_exit(
+ self, raise_on_timeout: bool = False, expect_signal: None | int = None
+ ) -> int | None:
+ # In process has no subprocess, so we don't need to poll anything.
This is called from
Review Comment:
```suggestion
# InProcessSupervisor has no subprocess, so we don't need to poll
anything. This is called from
```
--
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]