[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:
David Roberts 2020-11-02 14:54:32 +00:00
parent 2d0bddf428
commit e0d0ac86dd
1 changed files with 1 additions and 1 deletions

View File

@ -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 {