Skip to content

Commit 33e54cc

Browse files
committed
[ML] Functional tests - increase wait time for DFA start (#77307)
This PR stabilizes the DFA creation tests on cloud environments by increasing the timeout after DFA start.
1 parent 4bcb2ba commit 33e54cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • x-pack/test/functional/services/ml

x-pack/test/functional/services/ml/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ export function MachineLearningAPIProvider({ getService }: FtrProviderContext) {
268268
async waitForDFAJobTrainingRecordCountToBePositive(analyticsId: string) {
269269
await retry.waitForWithTimeout(
270270
`'${analyticsId}' to have training_docs_count > 0`,
271-
10 * 1000,
271+
60 * 1000,
272272
async () => {
273273
const trainingRecordCount = await this.getDFAJobTrainingRecordCount(analyticsId);
274274
if (trainingRecordCount > 0) {

0 commit comments

Comments
 (0)