Don't print intermediate status when running SimultaneousSenderTest.

This commit is contained in:
Jon Chambers 2020-09-01 12:38:26 -04:00 committed by Jon Chambers
parent dcec02412d
commit cd4b85b0b5
1 changed files with 0 additions and 2 deletions

View File

@ -47,10 +47,8 @@ public class SimultaneousSenderTest {
results.add(sender.send(Message.newBuilder().withDestination("1").build()));
}
int i=0;
for (CompletableFuture<Result> future : results) {
Result result = future.get(60, TimeUnit.SECONDS);
System.out.println("Got " + (i++));
if (!result.isSuccess()) {
throw new AssertionError(result.getError());