Extend timeout for TimeSeriesLifecycleActionsIT> testFullPolicy (#43891)

This commit is contained in:
Jake Landis 2019-07-02 21:32:05 -05:00
parent 2dc056b0a0
commit 0a79f4ca70
No known key found for this signature in database
GPG Key ID: 508157BFF65D51DD
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ public class TimeSeriesLifecycleActionsIT extends ESRestTestCase {
// asserts that rollover was called // asserts that rollover was called
assertBusy(() -> assertTrue(indexExists(secondIndex))); assertBusy(() -> assertTrue(indexExists(secondIndex)));
// asserts that shrink deleted the original index // asserts that shrink deleted the original index
assertBusy(() -> assertFalse(indexExists(originalIndex)), 20, TimeUnit.SECONDS); assertBusy(() -> assertFalse(indexExists(originalIndex)), 60, TimeUnit.SECONDS);
// asserts that the delete phase completed for the managed shrunken index // asserts that the delete phase completed for the managed shrunken index
assertBusy(() -> assertFalse(indexExists(shrunkenOriginalIndex))); assertBusy(() -> assertFalse(indexExists(shrunkenOriginalIndex)));
} }