Skip to content

Commit

Permalink
try removing wait for nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
will-hwang committed Jan 8, 2025
1 parent 005ba39 commit 69bd8cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,7 @@ protected String registerModelGroup(final String modelGroupRegisterRequestBody)
// Method that waits till the health of nodes in the cluster goes green
protected void waitForClusterHealthGreen(final String numOfNodes) throws IOException {
Request waitForGreen = new Request("GET", "/_cluster/health");
waitForGreen.addParameter("wait_for_nodes", numOfNodes);
// waitForGreen.addParameter("wait_for_nodes", numOfNodes);
// waitForGreen.addParameter("wait_for_status", "green");
waitForGreen.addParameter("cluster_manager_timeout", "60s");
waitForGreen.addParameter("timeout", "60s");
Expand Down

0 comments on commit 69bd8cf

Please sign in to comment.