This is an automated email from the ASF dual-hosted git repository.
shahar pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 5d2bd511681 [v3-1-test] Revert Fix breeze start-airflow mprocs output
interference #60652 (#60786) (#60788)
5d2bd511681 is described below
commit 5d2bd5116810dc3c5986c3428caf783b1350dd65
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Jan 19 18:37:27 2026 +0200
[v3-1-test] Revert Fix breeze start-airflow mprocs output interference
#60652 (#60786) (#60788)
(cherry picked from commit b5585d9151f2cfd3bac289af1d15a81cbf10757d)
Co-authored-by: Pierre Jeambrun <[email protected]>
---
scripts/ci/prek/compile_ui_assets_dev.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/scripts/ci/prek/compile_ui_assets_dev.py
b/scripts/ci/prek/compile_ui_assets_dev.py
index c2a26f5ad08..8e98a0708f4 100755
--- a/scripts/ci/prek/compile_ui_assets_dev.py
+++ b/scripts/ci/prek/compile_ui_assets_dev.py
@@ -79,9 +79,10 @@ if __name__ == "__main__":
stderr=subprocess.STDOUT,
)
- subprocess.Popen(
+ subprocess.run(
["pnpm", "dev"],
cwd=os.fspath(UI_DIRECTORY),
+ check=True,
env=env,
stdout=open(UI_ASSET_OUT_DEV_MODE_FILE, "a"),
stderr=subprocess.STDOUT,