mirror of https://github.com/apache/jclouds.git
JCLOUDS-1340: Disable BackoffLimitedRetryHandlerTest
These often fail in our continuous integration tests.
This commit is contained in:
parent
64553eda5f
commit
31f528263a
|
@ -76,7 +76,8 @@ public class BackoffLimitedRetryHandlerTest {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
// TODO: disabled since this often fails due to race conditions
|
||||||
|
@Test(enabled = false)
|
||||||
void testExponentialBackoffDelaySmallInterval5() throws InterruptedException {
|
void testExponentialBackoffDelaySmallInterval5() throws InterruptedException {
|
||||||
long period = 5;
|
long period = 5;
|
||||||
long acceptableDelay = period - 1;
|
long acceptableDelay = period - 1;
|
||||||
|
@ -87,7 +88,8 @@ public class BackoffLimitedRetryHandlerTest {
|
||||||
assertThat(elapsedTime).isBetween(period, period + acceptableDelay);
|
assertThat(elapsedTime).isBetween(period, period + acceptableDelay);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
// TODO: disabled since this often fails due to race conditions
|
||||||
|
@Test(enabled = false)
|
||||||
void testExponentialBackoffDelaySmallInterval1() throws InterruptedException {
|
void testExponentialBackoffDelaySmallInterval1() throws InterruptedException {
|
||||||
long period = 1;
|
long period = 1;
|
||||||
long acceptableDelay = 5;
|
long acceptableDelay = 5;
|
||||||
|
|
Loading…
Reference in New Issue