This is an automated email from the ASF dual-hosted git repository.

ephraimanierobi pushed a commit to branch v2-4-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 2f8ba6232265c6c7396788338dea928f41944b82
Author: Ephraim Anierobi <splendidzig...@gmail.com>
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
    
    (cherry picked from commit 3310618d4a8f1119fb734ea040311db731a54c26)
---
 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
 

Reply via email to