Skip to content
Closed
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