This is an automated email from the ASF dual-hosted git repository.
jedcunningham pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 3310618d4a Remove info log about closing parent pipe (#27054)
3310618d4a is described below
commit 3310618d4a8f1119fb734ea040311db731a54c26
Author: Ephraim Anierobi <[email protected]>
AuthorDate: Fri Oct 14 14:59:35 2022 +0100
Remove info log about closing parent pipe (#27054)
This log line is better removed, it doesn't seem like it's worth having
since now it pollutes
the logs whenever there's an import error
---
airflow/dag_processing/processor.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/airflow/dag_processing/processor.py
b/airflow/dag_processing/processor.py
index cebed6a13c..de3572906b 100644
--- a/airflow/dag_processing/processor.py
+++ b/airflow/dag_processing/processor.py
@@ -136,8 +136,6 @@ class DagFileProcessorProcess(LoggingMixin,
MultiprocessingStartMethodMixin):
# Since we share all open FDs from the parent, we need to close the
parent side of the pipe here in
# the child, else it won't get closed properly until we exit.
- log.info("Closing parent pipe")
-
parent_channel.close()
del parent_channel