This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/storm.git
The following commit(s) were added to refs/heads/master by this push:
new 6aee95d4f STORM-4106 Fix Storm.ps1 stdout/stderr feedback in
Powershell ISE
6aee95d4f is described below
commit 6aee95d4fc738b6b6a2dd2295b375b04215c97d6
Author: Scott Moore <[email protected]>
AuthorDate: Sat Nov 9 21:04:04 2024 +0000
STORM-4106 Fix Storm.ps1 stdout/stderr feedback in Powershell ISE
---
bin/storm.ps1 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/storm.ps1 b/bin/storm.ps1
index b98bdee83..42fff9d1d 100644
--- a/bin/storm.ps1
+++ b/bin/storm.ps1
@@ -64,6 +64,6 @@ if(Test-Path $StormEnvPath) {
}
$ArgsForProcess = @(([io.path]::combine("$STORM_BIN_DIR", "storm.py"))) + $args
-Start-Process -FilePath python3 -ArgumentList $ArgsForProcess -Wait
-NoNewWindow
+& python3 $ArgsForProcess
exit $LastExitCode