Extend timeout for TimeSeriesLifecycleActionsIT> testFullPolicy (#43891)
This commit is contained in:
parent
2dc056b0a0
commit
0a79f4ca70
|
@ -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)));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue