From 1da535110ede3792e0354e23068489e3b2e5319f Mon Sep 17 00:00:00 2001 From: Joshua Palis Date: Thu, 4 Jan 2024 18:20:37 +0000 Subject: [PATCH] Increasing mlconfig index creation wait time Signed-off-by: Joshua Palis --- .../org/opensearch/flowframework/FlowFrameworkRestTestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/opensearch/flowframework/FlowFrameworkRestTestCase.java b/src/test/java/org/opensearch/flowframework/FlowFrameworkRestTestCase.java index 660e15ce3..1ae6f8e34 100644 --- a/src/test/java/org/opensearch/flowframework/FlowFrameworkRestTestCase.java +++ b/src/test/java/org/opensearch/flowframework/FlowFrameworkRestTestCase.java @@ -131,7 +131,7 @@ public void setUpSettings() throws Exception { assertEquals(200, response.getStatusLine().getStatusCode()); // Ensure .plugins-ml-config is created before proceeding with integration tests - assertBusy(() -> { assertTrue(indexExistsWithAdminClient(".plugins-ml-config")); }, 30, TimeUnit.SECONDS); + assertBusy(() -> { assertTrue(indexExistsWithAdminClient(".plugins-ml-config")); }, 60, TimeUnit.SECONDS); } }