Skip to content

Commit a6903f4

Browse files
authored
[ML] Increase waiting time to stabilize flaky DFA integration tests (#122268) (#122282)
This PR increases the waiting time for the DFA native process from 60 to 90 seconds to stabilize the flaky integration tests that sometimes fail because the job has not finished training within 60 seconds.
1 parent 09d84fc commit a6903f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/ml/qa/native-multi-node-tests/src/javaRestTest/java/org/elasticsearch/xpack/ml/integration/MlNativeDataFrameAnalyticsIntegTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ protected StopDataFrameAnalyticsAction.Response forceStopAnalytics(String id) {
124124
}
125125

126126
protected void waitUntilAnalyticsIsStopped(String id) throws Exception {
127-
waitUntilAnalyticsIsStopped(id, TimeValue.timeValueSeconds(60));
127+
waitUntilAnalyticsIsStopped(id, TimeValue.timeValueSeconds(90));
128128
}
129129

130130
protected void waitUntilAnalyticsIsStopped(String id, TimeValue waitTime) throws Exception {

0 commit comments

Comments
 (0)