damccorm commented on code in PR #39658:
URL: https://github.com/apache/beam/pull/39658#discussion_r3735330478
##########
release/src/main/groovy/TestScripts.groovy:
##########
@@ -187,6 +224,26 @@ class TestScripts {
return output_text
}
+ // Run a single command asynchronously in the background
+ private Process _executeBackground(String cmd) {
+ def shell = "sh -c cmd".split(' ')
+ shell[2] = cmd
+ def pb = new ProcessBuilder(shell)
+ pb.directory(var.curDir)
+ pb.redirectErrorStream(true)
+ def proc = pb.start()
Review Comment:
Thanks - addressed this + did some other cleanup (running
https://github.com/apache/beam/actions/runs/31172410588 to verify I didn't
break anything with this)
--
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]