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

ephraimanierobi 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 b47449ee135 Fix breeze start-airflow mprocs output interference 
(#60652)
b47449ee135 is described below

commit b47449ee1350c8a3fbe7aeaa995caa897e1c5650
Author: Ephraim Anierobi <[email protected]>
AuthorDate: Sat Jan 17 07:10:57 2026 +0100

    Fix breeze start-airflow mprocs output interference (#60652)
    
    Run the dev UI hook without blocking start-airflow so other
    process output remains readable.
---
 scripts/ci/prek/compile_ui_assets_dev.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/scripts/ci/prek/compile_ui_assets_dev.py 
b/scripts/ci/prek/compile_ui_assets_dev.py
index efee8cb3c03..b927928b8b0 100755
--- a/scripts/ci/prek/compile_ui_assets_dev.py
+++ b/scripts/ci/prek/compile_ui_assets_dev.py
@@ -94,9 +94,8 @@ if __name__ == "__main__":
             stdout=f,
             stderr=subprocess.STDOUT,
         )
-        subprocess.run(
+        subprocess.Popen(
             ["pnpm", "dev"],
-            check=True,
             cwd=os.fspath(SIMPLE_AUTH_MANAGER_UI_DIRECTORY),
             env=env,
             stdout=f,

Reply via email to