Skip to content

Commit

Permalink
Reinstate the HystrixObservableCollapserTest stress test after some r…
Browse files Browse the repository at this point in the history
…uns showed there might still be a bug
  • Loading branch information
Matt Jacobs committed Nov 13, 2015
1 parent 3f7ec00 commit dd381cb
Showing 1 changed file with 9 additions and 0 deletions.
Expand Up @@ -160,6 +160,15 @@ public void testTwoRequests() throws Exception {
assertEquals(0L, metrics.getRollingCount(HystrixRollingNumberEvent.RESPONSE_FROM_CACHE));
}

@Test
public void stressTestRequestCollapser() throws Exception {
for(int i = 0; i < 100; i++) {
init();
testTwoRequests();
cleanup();
}
}

@Test
public void testTwoRequestsWhichShouldEachEmitTwice() throws Exception {
//TestCollapserTimer timer = new TestCollapserTimer();
Expand Down

0 comments on commit dd381cb

Please sign in to comment.