[ML] Increase forecast test timeout (#64471)
ForecastIT.testOverflowToDisk has been observed to fail a few times in FIPS JVMs because it takes longer than the permitted 30 seconds. This PR bumps the timeout up to 60 seconds. Fixes #63793
This commit is contained in:
parent
2d0bddf428
commit
e0d0ac86dd
|
@ -299,7 +299,7 @@ abstract class MlNativeAutodetectIntegTestCase extends MlNativeIntegTestCase {
|
|||
ForecastRequestStats forecastRequestStats = getForecastStats(jobId, forecastId);
|
||||
assertThat(forecastRequestStats, is(notNullValue()));
|
||||
assertThat(forecastRequestStats.getStatus(), in(status));
|
||||
}, 30, TimeUnit.SECONDS);
|
||||
}, 60, TimeUnit.SECONDS);
|
||||
}
|
||||
|
||||
protected void assertThatNumberOfAnnotationsIsEqualTo(int expectedNumberOfAnnotations) throws IOException {
|
||||
|
|
Loading…
Reference in New Issue