HLREST: AwaitsFix ML Test
It leaks state into other tests causing them to fail sometimes. Relates to #32993
This commit is contained in:
parent
faa42de66d
commit
34295fad87
|
@ -19,6 +19,7 @@
|
|||
|
||||
package org.elasticsearch.client;
|
||||
|
||||
import org.apache.http.util.EntityUtils;
|
||||
import org.elasticsearch.ElasticsearchException;
|
||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthRequest;
|
||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthResponse;
|
||||
|
@ -34,6 +35,7 @@ import org.elasticsearch.common.settings.Settings;
|
|||
import org.elasticsearch.common.unit.ByteSizeUnit;
|
||||
import org.elasticsearch.common.xcontent.XContentType;
|
||||
import org.elasticsearch.common.xcontent.support.XContentMapValues;
|
||||
import org.elasticsearch.client.Request;
|
||||
import org.elasticsearch.indices.recovery.RecoverySettings;
|
||||
import org.elasticsearch.rest.RestStatus;
|
||||
|
||||
|
@ -174,6 +176,8 @@ public class ClusterClientIT extends ESRestHighLevelClientTestCase {
|
|||
request.timeout("5s");
|
||||
ClusterHealthResponse response = execute(request, highLevelClient().cluster()::health, highLevelClient().cluster()::healthAsync);
|
||||
|
||||
logger.info("Shard stats\n{}", EntityUtils.toString(
|
||||
client().performRequest(new Request("GET", "/_cat/shards")).getEntity()));
|
||||
assertYellowShards(response);
|
||||
assertThat(response.getIndices().size(), equalTo(0));
|
||||
}
|
||||
|
@ -186,6 +190,8 @@ public class ClusterClientIT extends ESRestHighLevelClientTestCase {
|
|||
request.level(ClusterHealthRequest.Level.INDICES);
|
||||
ClusterHealthResponse response = execute(request, highLevelClient().cluster()::health, highLevelClient().cluster()::healthAsync);
|
||||
|
||||
logger.info("Shard stats\n{}", EntityUtils.toString(
|
||||
client().performRequest(new Request("GET", "/_cat/shards")).getEntity()));
|
||||
assertYellowShards(response);
|
||||
assertThat(response.getIndices().size(), equalTo(2));
|
||||
for (Map.Entry<String, ClusterIndexHealth> entry : response.getIndices().entrySet()) {
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
package org.elasticsearch.client;
|
||||
|
||||
import com.carrotsearch.randomizedtesting.generators.CodepointSetGenerator;
|
||||
import org.apache.lucene.util.LuceneTestCase.AwaitsFix;
|
||||
import org.elasticsearch.common.unit.TimeValue;
|
||||
import org.elasticsearch.protocol.xpack.ml.DeleteJobRequest;
|
||||
import org.elasticsearch.protocol.xpack.ml.DeleteJobResponse;
|
||||
|
@ -36,6 +37,7 @@ import java.util.concurrent.TimeUnit;
|
|||
|
||||
import static org.hamcrest.Matchers.is;
|
||||
|
||||
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/32993")
|
||||
public class MachineLearningIT extends ESRestHighLevelClientTestCase {
|
||||
|
||||
public void testPutJob() throws Exception {
|
||||
|
|
Loading…
Reference in New Issue