pierrejeambrun commented on code in PR #48239:
URL: https://github.com/apache/airflow/pull/48239#discussion_r2012186659


##########
task-sdk/src/airflow/sdk/execution_time/task_runner.py:
##########
@@ -443,7 +443,12 @@ def get_message(self) -> ReceiveMsgType:
 
         This will block until the message has been received.
         """
-        line = self.input.readline()
+        line = None
+
+        # We need to investigate why some lines are empty ("")
+        while not line:
+            line = self.input.readline()
+

Review Comment:
   Need investigation. Apparently there are some empty lines logged that need 
to be skipped.



-- 
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]

Reply via email to