Merge pull request #262 from andreisavu/backoff-period

Increase backoff period from 100 to 500
This commit is contained in:
Adrian Cole 2011-12-19 08:51:29 -08:00
commit f675c669af
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public class BackoffLimitedRetryHandlerTest {
@Test
void testExponentialBackoffDelayDefaultMaxInterval500() throws InterruptedException {
long period = 100;
long period = 500;
long acceptableDelay = period - 1;
long startTime = System.nanoTime();