amoghrajesh commented on code in PR #48949: URL: https://github.com/apache/airflow/pull/48949#discussion_r2033457895
########## airflow-core/src/airflow/jobs/triggerer_job_runner.py: ########## @@ -336,7 +336,7 @@ def start( # type: ignore[override] proc = super().start(id=job.id, job=job, target=cls.run_in_process, logger=logger, **kwargs) msg = messages.StartTriggerer(requests_fd=proc._requests_fd) - proc.stdin.write(msg.model_dump_json().encode() + b"\n") + proc.stdin.sendall(msg.model_dump_json().encode() + b"\n") Review Comment: Oh missed it. Handled it -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org