andreahlert commented on code in PR #61629: URL: https://github.com/apache/airflow/pull/61629#discussion_r2779640419
########## providers/standard/src/airflow/providers/standard/utils/python_virtualenv_script.jinja2: ########## @@ -55,7 +55,10 @@ else: #} reinit_supervisor_comms = getattr(task_runner, "reinit_supervisor_comms", None) if reinit_supervisor_comms: - reinit_supervisor_comms() + try: + reinit_supervisor_comms() + except Exception: + pass Review Comment: Yeah you're right about the silent pass, I'll add a warning to stderr. -- 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]
