ashb commented on code in PR #44972:
URL: https://github.com/apache/airflow/pull/44972#discussion_r1888714157
##########
airflow/dag_processing/manager.py:
##########
@@ -145,7 +141,7 @@ def start(self) -> None:
context = self._get_multiprocessing_context()
self._last_parsing_stat_received_at = time.monotonic()
- self._parent_signal_conn, child_signal_conn = context.Pipe()
+ parent_signal_conn, child_signal_conn = context.Pipe()
Review Comment:
We "could", but this is being extra defensive to make sure that only one end
is visible inside the child, so that it closes correctly when the child shuts
down.
--
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]