Skip to content

Commit

Permalink
set the stdout to false for remote sbk results
Browse files Browse the repository at this point in the history
Signed-off-by: Keshava Munegowda <keshava.gowda@gmail.com>
  • Loading branch information
kmgowda committed Nov 15, 2023
1 parent beec845 commit a651d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sbk-gem/src/main/java/io/gem/api/impl/SbkGemBenchmark.java
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public CompletableFuture<RemoteResponse[]> start() throws IOException, Interrupt
Printer.log.info("SBK-GEM: Remote SBK command: " + sbkCommand);
for (int i = 0; i < nodes.length; i++) {
cfResults[i] = nodes[i].runCommandAsync(nodes[i].connection.getDir() + File.separator + sbkCommand,
true, config.remoteTimeoutSeconds );
false, config.remoteTimeoutSeconds );
}
final CompletableFuture<Void> sbkFuture = CompletableFuture.allOf(cfResults);
sbkFuture.exceptionally(ex -> {
Expand Down

0 comments on commit a651d54

Please sign in to comment.