Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code Janitor task: Replace use of deprecated Runtime.exe(String command) #1271

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ protected BrokerService createSecondBroker() throws Exception {

@Override
protected void setUp() throws Exception {
startProcess("ssh -Nn -L60006:localhost:61616 localhost");
startProcess("ssh -Nn -L60007:localhost:61617 localhost");
startProcess("ssh", "-Nn", "-L60006:localhost:61616", "localhost");
startProcess("ssh", "-Nn", "-L60007:localhost:61617", "localhost");
super.setUp();
}

Expand All @@ -61,7 +61,7 @@ protected void tearDown() throws Exception {
}
}

private void startProcess(String command) throws IOException {
private void startProcess(String... command) throws IOException {
final Process process = Runtime.getRuntime().exec(command);
processes.add(process);
new Thread("stdout: " + command) {
Expand Down