Skip to content

Commit

Permalink
Increased time between batches in RollingCollapserBatchSize test
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Jacobs committed Jun 14, 2016
1 parent c3156fd commit 84c5e67
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,15 @@ public void onNext(CachedValuesHistogram distribution) {
Collapser.from(key, 3).observe();

try {
Thread.sleep(200);
Thread.sleep(250);
} catch (InterruptedException ex) {
fail("Interrupted ex");
}

Collapser.from(key, 4).observe();

try {
Thread.sleep(200);
Thread.sleep(250);
} catch (InterruptedException ex) {
fail("Interrupted ex");
}
Expand All @@ -131,7 +131,7 @@ public void onNext(CachedValuesHistogram distribution) {
Collapser.from(key, 9).observe();

try {
Thread.sleep(200);
Thread.sleep(250);
} catch (InterruptedException ex) {
fail("Interrupted ex");
}
Expand Down

0 comments on commit 84c5e67

Please sign in to comment.