Skip to content

Commit

Permalink
increase test time await for travisCI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
qiangdavidliu committed Jan 10, 2018
1 parent 40f1243 commit 8f0a64a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1177,7 +1177,7 @@ public void onNext(Boolean b) {
});

try {
assertTrue(startLatch.await(5000, TimeUnit.MILLISECONDS));
assertTrue(startLatch.await(20, TimeUnit.SECONDS));
} catch (Throwable ex) {
fail(ex.getMessage());
}
Expand All @@ -1193,7 +1193,7 @@ public void onNext(Boolean b) {
isolatedLatch.countDown();

try {
assertTrue(allTerminal.await(1000, TimeUnit.MILLISECONDS));
assertTrue(allTerminal.await(5000, TimeUnit.MILLISECONDS));
} catch (Exception e) {
e.printStackTrace();
fail("failed waiting on commands");
Expand Down

0 comments on commit 8f0a64a

Please sign in to comment.